Last change
on this file since 1803 was
1803,
checked in by rgrieder, 16 years ago
|
added files for lua 5.1.3, lua 5.0.3, CEGUILua-0.6.1 and CEGUILua-0.5.0b
|
-
Property svn:eol-style set to
native
|
File size:
838 bytes
|
Line | |
---|
1 | /* |
---|
2 | ** $Id: lstring.h,v 1.37 2002/08/16 14:45:55 roberto Exp $ |
---|
3 | ** String table (keep all strings handled by Lua) |
---|
4 | ** See Copyright Notice in lua.h |
---|
5 | */ |
---|
6 | |
---|
7 | #ifndef lstring_h |
---|
8 | #define lstring_h |
---|
9 | |
---|
10 | |
---|
11 | #include "lobject.h" |
---|
12 | #include "lstate.h" |
---|
13 | |
---|
14 | |
---|
15 | |
---|
16 | #define sizestring(l) (cast(lu_mem, sizeof(union TString))+ \ |
---|
17 | (cast(lu_mem, l)+1)*sizeof(char)) |
---|
18 | |
---|
19 | #define sizeudata(l) (cast(lu_mem, sizeof(union Udata))+(l)) |
---|
20 | |
---|
21 | #define luaS_new(L, s) (luaS_newlstr(L, s, strlen(s))) |
---|
22 | #define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, \ |
---|
23 | (sizeof(s)/sizeof(char))-1)) |
---|
24 | |
---|
25 | #define luaS_fix(s) ((s)->tsv.marked |= (1<<4)) |
---|
26 | |
---|
27 | void luaS_resize (lua_State *L, int newsize); |
---|
28 | Udata *luaS_newudata (lua_State *L, size_t s); |
---|
29 | void luaS_freeall (lua_State *L); |
---|
30 | TString *luaS_newlstr (lua_State *L, const char *str, size_t l); |
---|
31 | |
---|
32 | |
---|
33 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.