2
0

table.h 601 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. ** Module to control static tables
  3. ** TeCGraf - PUC-Rio
  4. ** $Id: table.h,v 2.12 1995/10/17 11:58:41 roberto Exp roberto $
  5. */
  6. #ifndef table_h
  7. #define table_h
  8. #include "tree.h"
  9. #include "opcode.h"
  10. extern Symbol *lua_table;
  11. extern TaggedString **lua_constant;
  12. extern char *lua_file[];
  13. extern int lua_nfile;
  14. void lua_initconstant (void);
  15. Word luaI_findsymbolbyname (char *name);
  16. Word luaI_findsymbol (TreeNode *t);
  17. Word luaI_findconstant (TreeNode *t);
  18. Word luaI_findconstantbyname (char *name);
  19. int lua_markobject (Object *o);
  20. void lua_pack (void);
  21. #endif