table.h 730 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. ** Module to control static tables
  3. ** TeCGraf - PUC-Rio
  4. ** $Id: table.h,v 2.1 1994/04/20 22:07:57 celes Exp celes $
  5. */
  6. #ifndef table_h
  7. #define table_h
  8. extern Symbol *lua_table;
  9. extern char **lua_constant;
  10. extern char *lua_file[];
  11. extern int lua_nfile;
  12. extern Word lua_block;
  13. extern Word lua_nentity;
  14. void lua_initconstant (void);
  15. int lua_findsymbol (char *s);
  16. int lua_findconstant (char *s);
  17. void lua_travsymbol (void (*fn)(Object *));
  18. void lua_markobject (Object *o);
  19. void lua_pack (void);
  20. char *lua_createstring (char *s);
  21. int lua_addfile (char *fn);
  22. int lua_delfile (void);
  23. char *lua_filename (void);
  24. void lua_nextvar (void);
  25. #endif