lauxlib.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /*
  2. ** $Id: lauxlib.h,v 1.20 2000/08/28 17:57:04 roberto Exp roberto $
  3. ** Auxiliary functions for building Lua libraries
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef lauxlib_h
  7. #define lauxlib_h
  8. #include <stddef.h>
  9. #include "lua.h"
  10. struct luaL_reg {
  11. const char *name;
  12. lua_CFunction func;
  13. };
  14. void luaL_openlib (lua_State *L, const struct luaL_reg *l, int n);
  15. void luaL_argerror (lua_State *L, int numarg, const char *extramsg);
  16. const char *luaL_check_lstr (lua_State *L, int numArg, size_t *len);
  17. const char *luaL_opt_lstr (lua_State *L, int numArg, const char *def,
  18. size_t *len);
  19. double luaL_check_number (lua_State *L, int numArg);
  20. double luaL_opt_number (lua_State *L, int numArg, double def);
  21. void luaL_checkstack (lua_State *L, int space, const char *msg);
  22. void luaL_checktype (lua_State *L, int narg, const char *tname);
  23. void luaL_verror (lua_State *L, const char *fmt, ...);
  24. int luaL_findstring (const char *name, const char *const list[]);
  25. void luaL_chunkid (char *out, const char *source, int len);
  26. void luaL_filesource (char *out, const char *filename, int len);
  27. char *luaL_openspace (lua_State *L, size_t size);
  28. void luaL_resetbuffer (lua_State *L);
  29. void luaL_addchar (lua_State *L, int c);
  30. size_t luaL_getsize (lua_State *L);
  31. void luaL_addsize (lua_State *L, size_t n);
  32. size_t luaL_newbuffer (lua_State *L, size_t size);
  33. void luaL_oldbuffer (lua_State *L, size_t old);
  34. char *luaL_buffer (lua_State *L);
  35. #ifndef LUA_SINGLESTATE
  36. /*
  37. ** ===============================================================
  38. ** some useful macros
  39. ** ===============================================================
  40. */
  41. #define luaL_arg_check(L, cond,numarg,extramsg) if (!(cond)) \
  42. luaL_argerror(L, numarg,extramsg)
  43. #define luaL_check_string(L,n) (luaL_check_lstr(L, (n), NULL))
  44. #define luaL_opt_string(L,n,d) (luaL_opt_lstr(L, (n), (d), NULL))
  45. #define luaL_check_int(L,n) ((int)luaL_check_number(L, n))
  46. #define luaL_check_long(L,n) ((long)luaL_check_number(L, n))
  47. #define luaL_opt_int(L,n,d) ((int)luaL_opt_number(L, n,d))
  48. #define luaL_opt_long(L,n,d) ((long)luaL_opt_number(L, n,d))
  49. #define luaL_openl(L,a) luaL_openlib(L, a, (sizeof(a)/sizeof(a[0])))
  50. #else
  51. /*
  52. ** ===============================================================
  53. ** Macros for single-state use
  54. ** ===============================================================
  55. */
  56. #define luaL_arg_check(cond,numarg,extramsg) if (!(cond)) \
  57. luaL_argerror(numarg,extramsg)
  58. #define luaL_check_string(n) (luaL_check_lstr((n), NULL))
  59. #define luaL_opt_string(n, d) (luaL_opt_lstr((n), (d), NULL))
  60. #define luaL_check_int(n) ((int)luaL_check_number(n))
  61. #define luaL_check_long(n) ((long)luaL_check_number(n))
  62. #define luaL_opt_int(n,d) ((int)luaL_opt_number(n,d))
  63. #define luaL_opt_long(n,d) ((long)luaL_opt_number(n,d))
  64. #define luaL_openl(a) luaL_openlib(a, (sizeof(a)/sizeof(a[0])))
  65. #define luaL_openlib(l,n) (luaL_openlib)(lua_state,l,n)
  66. #define luaL_argerror(numarg,extramsg) \
  67. (luaL_argerror)(lua_state,numarg,extramsg)
  68. #define luaL_check_lstr(numArg,len) (luaL_check_lstr)(lua_state,numArg,len)
  69. #define luaL_opt_lstr(numArg,def,len) \
  70. (luaL_opt_lstr)(lua_state,numArg,def,len)
  71. #define luaL_check_number(numArg) (luaL_check_number)(lua_state,numArg)
  72. #define luaL_opt_number(numArg,def) (luaL_opt_number)(lua_state,numArg,def)
  73. #define luaL_openspace(size) (luaL_openspace)(lua_state,size)
  74. #define luaL_resetbuffer() (luaL_resetbuffer)(lua_state)
  75. #define luaL_addchar(c) (luaL_addchar)(lua_state,c)
  76. #define luaL_getsize() (luaL_getsize)(lua_state)
  77. #define luaL_addsize(n) (luaL_addsize)(lua_state,n)
  78. #define luaL_newbuffer(size) (luaL_newbuffer)(lua_state,size)
  79. #define luaL_oldbuffer(old) (luaL_oldbuffer)(lua_state,old)
  80. #define luaL_buffer() (luaL_buffer)(lua_state)
  81. #endif
  82. #endif