aboutsummaryrefslogtreecommitdiff
path: root/table.h
blob: 8406ee22d44ac9ac927762020b0f2025fff10b71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
** table.c
** Module to control static tables
** TeCGraf - PUC-Rio
** 11 May 93
*/

#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);
char *lua_filename             (void);
void  lua_nextvar              (void);

#endif