aboutsummaryrefslogtreecommitdiff
path: root/table.h
diff options
context:
space:
mode:
authorWaldemar Celes <celes@tecgraf.puc-rio.br>1993-12-17 16:41:19 -0200
committerWaldemar Celes <celes@tecgraf.puc-rio.br>1993-12-17 16:41:19 -0200
commit4478f0ce92861e526b35e8889a8ce2706fc78fd1 (patch)
tree2a93db6b7628caa91c222d04448c40cae6252077 /table.h
parent64097041c48070deb2e9d88c55efb41ba77cdd9b (diff)
downloadlua-4478f0ce92861e526b35e8889a8ce2706fc78fd1.tar.gz
lua-4478f0ce92861e526b35e8889a8ce2706fc78fd1.tar.bz2
lua-4478f0ce92861e526b35e8889a8ce2706fc78fd1.zip
Module to control static tables
Diffstat (limited to 'table.h')
-rw-r--r--table.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/table.h b/table.h
index 8406ee22..1941fb28 100644
--- a/table.h
+++ b/table.h
@@ -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);
33char *lua_createstring (char *s); 32char *lua_createstring (char *s);
34void *lua_createarray (void *a); 33void *lua_createarray (void *a);
35int lua_addfile (char *fn); 34int lua_addfile (char *fn);
35int lua_delfile (void);
36char *lua_filename (void); 36char *lua_filename (void);
37void lua_nextvar (void); 37void lua_nextvar (void);
38 38