1
0
mirror of https://github.com/lua/lua.git synced 2025-01-14 05:43:00 +08:00
lua/table.h

40 lines
840 B
C
Raw Normal View History

1993-07-28 10:18:00 -03:00
/*
** Module to control static tables
** TeCGraf - PUC-Rio
1993-12-17 16:41:19 -02:00
** $Id: $
1993-07-28 10:18:00 -03:00
*/
#ifndef table_h
#define table_h
extern Symbol *lua_table;
extern Word lua_ntable;
extern char **lua_constant;
extern Word lua_nconstant;
extern char **lua_string;
extern Word lua_nstring;
extern Hash **lua_array;
extern Word lua_narray;
extern char *lua_file[];
extern int lua_nfile;
#define lua_markstring(s) (*((s)-1))
int lua_findsymbol (char *s);
int lua_findenclosedconstant (char *s);
int lua_findconstant (char *s);
void lua_markobject (Object *o);
char *lua_createstring (char *s);
void *lua_createarray (void *a);
int lua_addfile (char *fn);
1993-12-17 16:41:19 -02:00
int lua_delfile (void);
1993-07-28 10:18:00 -03:00
char *lua_filename (void);
void lua_nextvar (void);
#endif