aboutsummaryrefslogtreecommitdiff
path: root/tree.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-18 17:27:38 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-18 17:27:38 -0200
commit73664eb7399655e7cf65132c91a1aa16191a1667 (patch)
tree733f88cc9444c2563989a1dd404c62c617dee926 /tree.h
parentfeed56a01ccb9ca99271e0feca79f71aa5c38f8e (diff)
downloadlua-73664eb7399655e7cf65132c91a1aa16191a1667.tar.gz
lua-73664eb7399655e7cf65132c91a1aa16191a1667.tar.bz2
lua-73664eb7399655e7cf65132c91a1aa16191a1667.zip
function 'lua_createstring' moved from table.c to tree.c
Diffstat (limited to 'tree.h')
-rw-r--r--tree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tree.h b/tree.h
index aa7a44c4..e8accc7e 100644
--- a/tree.h
+++ b/tree.h
@@ -1,7 +1,7 @@
1/* 1/*
2** tree.h 2** tree.h
3** TecCGraf - PUC-Rio 3** TecCGraf - PUC-Rio
4** $Id: tree.h,v 1.3 1994/11/16 16:03:48 roberto Exp roberto $ 4** $Id: tree.h,v 1.4 1994/11/17 13:58:57 roberto Exp roberto $
5*/ 5*/
6 6
7#ifndef tree_h 7#ifndef tree_h
@@ -28,7 +28,7 @@ typedef struct TreeNode
28#define indexstring(s) (*(((Word *)s)-1)) 28#define indexstring(s) (*(((Word *)s)-1))
29 29
30 30
31char *lua_strcreate (char *str); 31char *lua_createstring (char *str);
32TreeNode *lua_constcreate (char *str); 32TreeNode *lua_constcreate (char *str);
33int lua_strcollector (void); 33int lua_strcollector (void);
34TreeNode *lua_varnext (char *n); 34TreeNode *lua_varnext (char *n);