|
native Lua
0.4.0
Lua on the platform you use with the compiler you choose
|
Go to the documentation of this file.
15 #define sizelstring(l) (sizeof(union UTString) + ((l) + 1) * sizeof(char))
17 #define sizeludata(l) (sizeof(union UUdata) + (l))
18 #define sizeudata(u) sizeludata((u)->len)
20 #define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, \
21 (sizeof(s)/sizeof(char))-1))
27 #define isreserved(s) ((s)->tt == LUA_TSHRSTR && (s)->extra > 0)
33 #define eqshrstr(a,b) check_exp((a)->tt == LUA_TSHRSTR, (a) == (b))
#define LUAI_FUNC
Definition: luaconf.h:282
LUAI_FUNC TString * luaS_new(lua_State *L, const char *str)
Definition: lstring.c:219
LUAI_FUNC void luaS_remove(lua_State *L, TString *ts)
Definition: lstring.c:154
LUAI_FUNC void luaS_clearcache(global_State *g)
Definition: lstring.c:103
LUAI_FUNC int luaS_eqlngstr(TString *a, TString *b)
Definition: lstring.c:40
LUAI_FUNC void luaS_resize(lua_State *L, int newsize)
Definition: lstring.c:71
Definition: lobject.h:303
Definition: lobject.h:346
LUAI_FUNC unsigned int luaS_hashlongstr(TString *ts)
Definition: lstring.c:58
LUAI_FUNC Udata * luaS_newudata(lua_State *L, size_t s)
Definition: lstring.c:236
LUAI_FUNC void luaS_init(lua_State *L)
Definition: lstring.c:116
LUAI_FUNC TString * luaS_newlstr(lua_State *L, const char *str, size_t l)
Definition: lstring.c:199
LUAI_FUNC unsigned int luaS_hash(const char *str, size_t l, unsigned int seed)
Definition: lstring.c:49
LUAI_FUNC TString * luaS_createlngstrobj(lua_State *L, size_t l)
Definition: lstring.c:147