lualib.h 532 B

1234567891011121314151617181920212223242526
  1. /*
  2. ** $Id: lualib.h,v 1.10 2000/08/09 19:16:57 roberto Exp roberto $
  3. ** Lua standard libraries
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef lualib_h
  7. #define lualib_h
  8. #include "lua.h"
  9. void lua_baselibopen (lua_State *L);
  10. void lua_iolibopen (lua_State *L);
  11. void lua_strlibopen (lua_State *L);
  12. void lua_mathlibopen (lua_State *L);
  13. void lua_dblibopen (lua_State *L);
  14. /* Auxiliary functions (private) */
  15. const char *luaI_classend (lua_State *L, const char *p);
  16. int luaI_singlematch (int c, const char *p, const char *ep);
  17. #endif