aboutsummaryrefslogtreecommitdiff
path: root/table.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1995-10-13 12:16:25 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1995-10-13 12:16:25 -0300
commitb17c76817d008de0e0de460c5d0fac4741d0fe02 (patch)
tree02b5b942ab01853a5be4f385dceb8ec567c13008 /table.h
parentb074306267b70015d770cb33c78dcf6cfe53fb45 (diff)
downloadlua-b17c76817d008de0e0de460c5d0fac4741d0fe02.tar.gz
lua-b17c76817d008de0e0de460c5d0fac4741d0fe02.tar.bz2
lua-b17c76817d008de0e0de460c5d0fac4741d0fe02.zip
new function "luaI_findconstantbyname".
Diffstat (limited to 'table.h')
-rw-r--r--table.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/table.h b/table.h
index f80f981e..3cab37ed 100644
--- a/table.h
+++ b/table.h
@@ -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);
21Word luaI_findsymbolbyname (char *name); 21Word luaI_findsymbolbyname (char *name);
22Word luaI_findsymbol (TreeNode *t); 22Word luaI_findsymbol (TreeNode *t);
23Word luaI_findconstant (TreeNode *t); 23Word luaI_findconstant (TreeNode *t);
24Word luaI_findconstantbyname (char *name);
24void lua_travsymbol (void (*fn)(Object *)); 25void lua_travsymbol (void (*fn)(Object *));
25void lua_markobject (Object *o); 26void lua_markobject (Object *o);
26void lua_pack (void); 27void lua_pack (void);