lualib.h 575 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. ** $Id: lualib.h,v 1.11 2000/09/05 19:33:32 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. #define LUA_ALERT "_ALERT"
  10. void lua_baselibopen (lua_State *L);
  11. void lua_iolibopen (lua_State *L);
  12. void lua_strlibopen (lua_State *L);
  13. void lua_mathlibopen (lua_State *L);
  14. void lua_dblibopen (lua_State *L);
  15. /* Auxiliary functions (private) */
  16. const char *luaI_classend (lua_State *L, const char *p);
  17. int luaI_singlematch (int c, const char *p, const char *ep);
  18. #endif