diff options
Diffstat (limited to 'lstring.h')
-rw-r--r-- | lstring.h | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstring.h,v 1.28 2001/02/09 19:53:16 roberto Exp roberto $ | 2 | ** $Id: lstring.h,v 1.29 2001/02/09 20:22:29 roberto Exp roberto $ |
3 | ** String table (keep all strings handled by Lua) | 3 | ** String table (keep all strings handled by Lua) |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -21,12 +21,14 @@ | |||
21 | #define RESERVEDMARK 3 | 21 | #define RESERVEDMARK 3 |
22 | 22 | ||
23 | 23 | ||
24 | #define sizestring(l) ((luint32)sizeof(union L_UTString)+(l)+1) | 24 | #define sizestring(l) ((lu_mem)sizeof(union L_UTString)+ \ |
25 | ((lu_mem)(l)+1)*sizeof(char)) | ||
25 | 26 | ||
26 | #define sizeudata(l) ((luint32)sizeof(union L_UTString)+(l)) | 27 | #define sizeudata(l) ((lu_mem)sizeof(union L_UTString)+(l)) |
27 | 28 | ||
28 | #define luaS_new(L, s) (luaS_newlstr(L, s, strlen(s))) | 29 | #define luaS_new(L, s) (luaS_newlstr(L, s, strlen(s))) |
29 | #define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, (sizeof(s))-1)) | 30 | #define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, \ |
31 | (sizeof(s)/sizeof(char))-1)) | ||
30 | 32 | ||
31 | void luaS_init (lua_State *L); | 33 | void luaS_init (lua_State *L); |
32 | void luaS_resize (lua_State *L, stringtable *tb, int newsize); | 34 | void luaS_resize (lua_State *L, stringtable *tb, int newsize); |