diff options
author | Waldemar Celes <celes@tecgraf.puc-rio.br> | 1993-12-17 16:41:19 -0200 |
---|---|---|
committer | Waldemar Celes <celes@tecgraf.puc-rio.br> | 1993-12-17 16:41:19 -0200 |
commit | 4478f0ce92861e526b35e8889a8ce2706fc78fd1 (patch) | |
tree | 2a93db6b7628caa91c222d04448c40cae6252077 /table.h | |
parent | 64097041c48070deb2e9d88c55efb41ba77cdd9b (diff) | |
download | lua-4478f0ce92861e526b35e8889a8ce2706fc78fd1.tar.gz lua-4478f0ce92861e526b35e8889a8ce2706fc78fd1.tar.bz2 lua-4478f0ce92861e526b35e8889a8ce2706fc78fd1.zip |
Module to control static tables
Diffstat (limited to 'table.h')
-rw-r--r-- | table.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,8 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | ** table.c | ||
3 | ** Module to control static tables | 2 | ** Module to control static tables |
4 | ** TeCGraf - PUC-Rio | 3 | ** TeCGraf - PUC-Rio |
5 | ** 11 May 93 | 4 | ** $Id: $ |
6 | */ | 5 | */ |
7 | 6 | ||
8 | #ifndef table_h | 7 | #ifndef table_h |
@@ -33,6 +32,7 @@ void lua_markobject (Object *o); | |||
33 | char *lua_createstring (char *s); | 32 | char *lua_createstring (char *s); |
34 | void *lua_createarray (void *a); | 33 | void *lua_createarray (void *a); |
35 | int lua_addfile (char *fn); | 34 | int lua_addfile (char *fn); |
35 | int lua_delfile (void); | ||
36 | char *lua_filename (void); | 36 | char *lua_filename (void); |
37 | void lua_nextvar (void); | 37 | void lua_nextvar (void); |
38 | 38 | ||