1997-09-16 16:25:59 -03:00
|
|
|
/*
|
2000-05-24 10:54:49 -03:00
|
|
|
** $Id: lstring.h,v 1.20 2000/05/10 16:33:20 roberto Exp roberto $
|
1997-09-16 16:25:59 -03:00
|
|
|
** String table (keep all strings handled by Lua)
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lstring_h
|
|
|
|
#define lstring_h
|
|
|
|
|
|
|
|
|
|
|
|
#include "lobject.h"
|
1999-10-14 17:13:31 -02:00
|
|
|
#include "lstate.h"
|
1997-09-16 16:25:59 -03:00
|
|
|
|
1997-11-04 13:27:53 -02:00
|
|
|
|
1999-10-11 14:13:42 -02:00
|
|
|
/*
|
2000-05-08 16:32:53 -03:00
|
|
|
** any TString with mark>=FIXMARK is never collected.
|
1999-10-11 14:13:42 -02:00
|
|
|
** Marks>=RESERVEDMARK are used to identify reserved words.
|
|
|
|
*/
|
|
|
|
#define FIXMARK 2
|
|
|
|
#define RESERVEDMARK 3
|
|
|
|
|
1999-10-04 15:51:04 -02:00
|
|
|
|
2000-05-10 13:33:20 -03:00
|
|
|
#define gcsizestring(L, l) numblocks(L, 0, sizeof(TString)+l)
|
|
|
|
#define gcsizeudata gcsizestring(L, 0)
|
|
|
|
|
|
|
|
|
1999-11-22 11:12:07 -02:00
|
|
|
void luaS_init (lua_State *L);
|
1999-11-26 16:59:20 -02:00
|
|
|
void luaS_resize (lua_State *L, stringtable *tb, int newsize);
|
2000-03-10 15:37:44 -03:00
|
|
|
TString *luaS_createudata (lua_State *L, void *udata, int tag);
|
1999-11-22 11:12:07 -02:00
|
|
|
void luaS_freeall (lua_State *L);
|
2000-05-24 10:54:49 -03:00
|
|
|
TString *luaS_newlstr (lua_State *L, const char *str, size_t l);
|
2000-03-10 15:37:44 -03:00
|
|
|
TString *luaS_new (lua_State *L, const char *str);
|
|
|
|
TString *luaS_newfixed (lua_State *L, const char *str);
|
1997-12-01 18:31:25 -02:00
|
|
|
|
1997-09-16 16:25:59 -03:00
|
|
|
|
|
|
|
#endif
|