correction of function 'nextvar'

This commit is contained in:
Roberto Ierusalimschy
1994-11-16 14:03:48 -02:00
parent 86b35cf4f6
commit 94686ce585
5 changed files with 41 additions and 54 deletions

4
tree.h
View File

@@ -1,7 +1,7 @@
/*
** tree.h
** TecCGraf - PUC-Rio
** $Id: tree.h,v 1.1 1994/07/19 21:24:17 celes Exp roberto $
** $Id: tree.h,v 1.2 1994/11/14 21:40:14 roberto Exp roberto $
*/
#ifndef tree_h
@@ -31,6 +31,6 @@ typedef struct TreeNode
char *lua_strcreate (char *str);
TreeNode *lua_constcreate (char *str);
void lua_strcollector (void);
char *lua_varnext (char *n);
TreeNode *lua_varnext (char *n);
#endif