lualib.h 516 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. ** Libraries to be used in LUA programs
  3. ** Grupo de Tecnologia em Computacao Grafica
  4. ** TeCGraf - PUC-Rio
  5. ** $Id: lualib.h,v 1.12 1997/03/18 15:30:50 roberto Exp roberto $
  6. */
  7. #ifndef lualib_h
  8. #define lualib_h
  9. #include "lua.h"
  10. void iolib_open (void);
  11. void strlib_open (void);
  12. void mathlib_open (void);
  13. /* auxiliar functions (private) */
  14. char *luaI_addchar (int c);
  15. void luaI_emptybuff (void);
  16. void luaI_addquoted (char *s);
  17. char *luaL_item_end (char *p);
  18. int luaL_singlematch (int c, char *p);
  19. #endif