func.h 257 B

1234567891011121314151617181920
  1. #ifndef func_h
  2. #define func_h
  3. #include "types.h"
  4. /*
  5. ** Header para funcoes.
  6. */
  7. typedef struct TFunc
  8. {
  9. struct TFunc *next;
  10. char marked;
  11. int size;
  12. Byte *code;
  13. } TFunc;
  14. Long luaI_funccollector (void);
  15. void luaI_insertfunction (TFunc *f);
  16. #endif