tools/llvm: Do not build with symbols
[minix3.git] / external / mit / lua / dist / src / lstring.h
blob5b8092d28a7084ce664962cbad7bb8ee087e4ef0
1 /* $NetBSD: lstring.h,v 1.1.1.2 2012/03/15 00:08:04 alnsn Exp $ */
3 /*
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
7 */
9 #ifndef lstring_h
10 #define lstring_h
13 #include "lgc.h"
14 #include "lobject.h"
15 #include "lstate.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);
33 #endif