table.h 634 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. ** Module to control static tables
  3. ** TeCGraf - PUC-Rio
  4. ** $Id: table.h,v 2.13 1995/10/26 14:21:56 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. Long luaI_collectgarbage (void);
  21. void lua_pack (void);
  22. #endif