aboutsummaryrefslogtreecommitdiff
path: root/table.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-12-20 19:20:36 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-12-20 19:20:36 -0200
commit8cb8594a3bcfdc1447aebfcd0ac85db9af5ca490 (patch)
tree13d09f704662cafa2597e77c92611b468e4741c9 /table.h
parentfe8338335dfb4bf37e6b164cb55bfcc94ec6563d (diff)
downloadlua-8cb8594a3bcfdc1447aebfcd0ac85db9af5ca490.tar.gz
lua-8cb8594a3bcfdc1447aebfcd0ac85db9af5ca490.tar.bz2
lua-8cb8594a3bcfdc1447aebfcd0ac85db9af5ca490.zip
better control of integer types and their limits
Diffstat (limited to 'table.h')
-rw-r--r--table.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/table.h b/table.h
index d65751f8..f80f981e 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.8 1994/11/18 19:27:38 roberto Exp roberto $ 4** $Id: table.h,v 2.9 1994/11/23 14:31:11 roberto Stab roberto $
5*/ 5*/
6 6
7#ifndef table_h 7#ifndef table_h
@@ -18,9 +18,9 @@ extern int lua_nfile;
18 18
19 19
20void lua_initconstant (void); 20void lua_initconstant (void);
21int luaI_findsymbolbyname (char *name); 21Word luaI_findsymbolbyname (char *name);
22int luaI_findsymbol (TreeNode *t); 22Word luaI_findsymbol (TreeNode *t);
23int luaI_findconstant (TreeNode *t); 23Word luaI_findconstant (TreeNode *t);
24void lua_travsymbol (void (*fn)(Object *)); 24void lua_travsymbol (void (*fn)(Object *));
25void lua_markobject (Object *o); 25void lua_markobject (Object *o);
26void lua_pack (void); 26void lua_pack (void);