1 /* $NetBSD: lstring.h,v 1.1.1.2 2012/03/15 00:08:04 alnsn Exp $ */
4 ** $Id: lstring.h,v 1.1.1.2 2012/03/15 00:08:04 alnsn Exp $
5 ** String table (keep all strings handled by Lua)
6 ** See Copyright Notice in lua.h
18 #define sizestring(s) (sizeof(union TString)+((s)->len+1)*sizeof(char))
20 #define sizeudata(u) (sizeof(union Udata)+(u)->len)
22 #define luaS_new(L, s) (luaS_newlstr(L, s, strlen(s)))
23 #define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, \
24 (sizeof(s)/sizeof(char))-1))
26 #define luaS_fix(s) l_setbit((s)->tsv.marked, FIXEDBIT)
28 LUAI_FUNC
void luaS_resize (lua_State
*L
, int newsize
);
29 LUAI_FUNC Udata
*luaS_newudata (lua_State
*L
, size_t s
, Table
*e
);
30 LUAI_FUNC TString
*luaS_newlstr (lua_State
*L
, const char *str
, size_t l
);