diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-20 15:15:33 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-20 15:15:33 -0300 |
commit | 099442c41f2cec6122690e6c8f2e11327613e6f6 (patch) | |
tree | 73599b274ea4a9b96906ff8160eeb4a524702a8e /lstring.h | |
parent | 27600fe87a6fafdfd4ddddeb390591fe749b480f (diff) | |
download | lua-099442c41f2cec6122690e6c8f2e11327613e6f6.tar.gz lua-099442c41f2cec6122690e6c8f2e11327613e6f6.tar.bz2 lua-099442c41f2cec6122690e6c8f2e11327613e6f6.zip |
better separation between basic types
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); |