diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-10-13 12:16:25 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-10-13 12:16:25 -0300 |
commit | b17c76817d008de0e0de460c5d0fac4741d0fe02 (patch) | |
tree | 02b5b942ab01853a5be4f385dceb8ec567c13008 /table.h | |
parent | b074306267b70015d770cb33c78dcf6cfe53fb45 (diff) | |
download | lua-b17c76817d008de0e0de460c5d0fac4741d0fe02.tar.gz lua-b17c76817d008de0e0de460c5d0fac4741d0fe02.tar.bz2 lua-b17c76817d008de0e0de460c5d0fac4741d0fe02.zip |
new function "luaI_findconstantbyname".
Diffstat (limited to 'table.h')
-rw-r--r-- | table.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | ** Module to control static tables | 2 | ** Module to control static tables |
3 | ** TeCGraf - PUC-Rio | 3 | ** TeCGraf - PUC-Rio |
4 | ** $Id: table.h,v 2.9 1994/11/23 14:31:11 roberto Stab roberto $ | 4 | ** $Id: table.h,v 2.10 1994/12/20 21:20:36 roberto Exp roberto $ |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #ifndef table_h | 7 | #ifndef table_h |
@@ -21,6 +21,7 @@ void lua_initconstant (void); | |||
21 | Word luaI_findsymbolbyname (char *name); | 21 | Word luaI_findsymbolbyname (char *name); |
22 | Word luaI_findsymbol (TreeNode *t); | 22 | Word luaI_findsymbol (TreeNode *t); |
23 | Word luaI_findconstant (TreeNode *t); | 23 | Word luaI_findconstant (TreeNode *t); |
24 | Word luaI_findconstantbyname (char *name); | ||
24 | void lua_travsymbol (void (*fn)(Object *)); | 25 | void lua_travsymbol (void (*fn)(Object *)); |
25 | void lua_markobject (Object *o); | 26 | void lua_markobject (Object *o); |
26 | void lua_pack (void); | 27 | void lua_pack (void); |