lbuiltin.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. ** $Id: lbuiltin.h,v 1.8 2000/05/08 19:32:53 roberto Exp roberto $
  3. ** Built-in functions
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef lbuiltin_h
  7. #define lbuiltin_h
  8. #include "lua.h"
  9. void luaB__ALERT (lua_State *L);
  10. void luaB__ERRORMESSAGE (lua_State *L);
  11. void luaB_assert (lua_State *L);
  12. void luaB_call (lua_State *L);
  13. void luaB_collectgarbage (lua_State *L);
  14. void luaB_copytagmethods (lua_State *L);
  15. void luaB_dofile (lua_State *L);
  16. void luaB_dostring (lua_State *L);
  17. void luaB_error (lua_State *L);
  18. void luaB_getglobal (lua_State *L);
  19. void luaB_getn (lua_State *L);
  20. void luaB_gettagmethod (lua_State *L);
  21. void luaB_globals (lua_State *L);
  22. void luaB_newtag (lua_State *L);
  23. void luaB_next (lua_State *L);
  24. void luaB_print (lua_State *L);
  25. void luaB_rawget (lua_State *L);
  26. void luaB_rawset (lua_State *L);
  27. void luaB_setglobal (lua_State *L);
  28. void luaB_settag (lua_State *L);
  29. void luaB_settagmethod (lua_State *L);
  30. void luaB_sort (lua_State *L);
  31. void luaB_tag (lua_State *L);
  32. void luaB_tinsert (lua_State *L);
  33. void luaB_tonumber (lua_State *L);
  34. void luaB_tostring (lua_State *L);
  35. void luaB_tremove (lua_State *L);
  36. void luaB_type (lua_State *L);
  37. void luaB_predefine (lua_State *L);
  38. #endif