lstring.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. ** $Id: lstring.h $
  3. ** String table (keep all strings handled by Lua)
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef lstring_h
  7. #define lstring_h
  8. #include "lgc.h"
  9. #include "lobject.h"
  10. #include "lstate.h"
  11. /*
  12. ** Memory-allocation error message must be preallocated (it cannot
  13. ** be created after memory is exhausted)
  14. */
  15. #define MEMERRMSG "not enough memory"
  16. /*
  17. ** Size of a short TString: Size of the header plus space for the string
  18. ** itself (including final '\0').
  19. */
  20. #define sizestrshr(l) \
  21. (offsetof(TString, contents) + ((l) + 1) * sizeof(char))
  22. #define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, \
  23. (sizeof(s)/sizeof(char))-1))
  24. /*
  25. ** test whether a string is a reserved word
  26. */
  27. #define isreserved(s) ((s)->tt == LUA_VSHRSTR && (s)->extra > 0)
  28. /*
  29. ** equality for short strings, which are always internalized
  30. */
  31. #define eqshrstr(a,b) check_exp((a)->tt == LUA_VSHRSTR, (a) == (b))
  32. LUAI_FUNC unsigned luaS_hash (const char *str, size_t l, unsigned seed);
  33. LUAI_FUNC unsigned luaS_hashlongstr (TString *ts);
  34. LUAI_FUNC int luaS_eqlngstr (TString *a, TString *b);
  35. LUAI_FUNC void luaS_resize (lua_State *L, int newsize);
  36. LUAI_FUNC void luaS_clearcache (global_State *g);
  37. LUAI_FUNC void luaS_init (lua_State *L);
  38. LUAI_FUNC void luaS_remove (lua_State *L, TString *ts);
  39. LUAI_FUNC Udata *luaS_newudata (lua_State *L, size_t s, int nuvalue);
  40. LUAI_FUNC TString *luaS_newlstr (lua_State *L, const char *str, size_t l);
  41. LUAI_FUNC TString *luaS_new (lua_State *L, const char *str);
  42. LUAI_FUNC TString *luaS_createlngstrobj (lua_State *L, size_t l);
  43. LUAI_FUNC TString *luaS_newextlstr (lua_State *L,
  44. const char *s, size_t len, lua_Alloc falloc, void *ud);
  45. LUAI_FUNC size_t luaS_sizelngstr (size_t len, int kind);
  46. #endif