lauxlib.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:3k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /*
  2. ** $Id: lauxlib.h,v 1.30 2000/10/30 12:38:50 roberto Exp $
  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 <stdio.h>
  10. #include "lua.h"
  11. #ifndef LUALIB_API
  12. #define LUALIB_API extern
  13. #endif
  14. struct luaL_reg {
  15.   const char *name;
  16.   lua_CFunction func;
  17. };
  18. LUALIB_API void luaL_openlib (lua_State *L, const struct luaL_reg *l, int n);
  19. LUALIB_API void luaL_argerror (lua_State *L, int numarg, const char *extramsg);
  20. LUALIB_API const char *luaL_check_lstr (lua_State *L, int numArg, size_t *len);
  21. LUALIB_API const char *luaL_opt_lstr (lua_State *L, int numArg, const char *def, size_t *len);
  22. LUALIB_API double luaL_check_number (lua_State *L, int numArg);
  23. LUALIB_API double luaL_opt_number (lua_State *L, int numArg, double def);
  24. LUALIB_API void luaL_checkstack (lua_State *L, int space, const char *msg);
  25. LUALIB_API void luaL_checktype (lua_State *L, int narg, int t);
  26. LUALIB_API void luaL_checkany (lua_State *L, int narg);
  27. LUALIB_API void luaL_verror (lua_State *L, const char *fmt, ...);
  28. LUALIB_API int luaL_findstring (const char *name, const char *const list[]);
  29. /*
  30. ** ===============================================================
  31. ** some useful macros
  32. ** ===============================================================
  33. */
  34. #define luaL_arg_check(L, cond,numarg,extramsg) if (!(cond)) 
  35.                                                luaL_argerror(L, numarg,extramsg)
  36. #define luaL_check_string(L,n) (luaL_check_lstr(L, (n), NULL))
  37. #define luaL_opt_string(L,n,d) (luaL_opt_lstr(L, (n), (d), NULL))
  38. #define luaL_check_int(L,n) ((int)luaL_check_number(L, n))
  39. #define luaL_check_long(L,n) ((long)luaL_check_number(L, n))
  40. #define luaL_opt_int(L,n,d) ((int)luaL_opt_number(L, n,d))
  41. #define luaL_opt_long(L,n,d) ((long)luaL_opt_number(L, n,d))
  42. #define luaL_openl(L,a) luaL_openlib(L, a, (sizeof(a)/sizeof(a[0])))
  43. /*
  44. ** {======================================================
  45. ** Generic Buffer manipulation
  46. ** =======================================================
  47. */
  48. #ifndef LUAL_BUFFERSIZE
  49. #define LUAL_BUFFERSIZE   BUFSIZ
  50. #endif
  51. typedef struct luaL_Buffer {
  52.   char *p; /* current position in buffer */
  53.   int level;
  54.   lua_State *L;
  55.   char buffer[LUAL_BUFFERSIZE];
  56. } luaL_Buffer;
  57. #define luaL_putchar(B,c) 
  58.   ((void)((B)->p < &(B)->buffer[LUAL_BUFFERSIZE] || luaL_prepbuffer(B)), 
  59.    (*(B)->p++ = (char)(c)))
  60. #define luaL_addsize(B,n) ((B)->p += (n))
  61. LUALIB_API void luaL_buffinit (lua_State *L, luaL_Buffer *B);
  62. LUALIB_API char *luaL_prepbuffer (luaL_Buffer *B);
  63. LUALIB_API void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l);
  64. LUALIB_API void luaL_addstring (luaL_Buffer *B, const char *s);
  65. LUALIB_API void luaL_addvalue (luaL_Buffer *B);
  66. LUALIB_API void luaL_pushresult (luaL_Buffer *B);
  67. /* }====================================================== */
  68. #endif