aboutsummaryrefslogtreecommitdiff
path: root/table.h
blob: ca246dc61eae8ba2a855d3a255a45b7d1b7f24e0 (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
/*
** Module to control static tables
** TeCGraf - PUC-Rio
** $Id: table.h,v 1.1 1993/12/17 18:41:19 celes Exp roberto $
*/

#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_findconstant         (char *s);
void  lua_markobject           (Object *o);
char *lua_createstring         (char *s);
void *lua_createarray          (void *a);
int   lua_addfile              (char *fn);
int   lua_delfile 	       (void);
char *lua_filename             (void);
void  lua_nextvar              (void);

#endif