1997-09-16 16:25:59 -03:00
|
|
|
/*
|
2000-03-10 15:37:44 -03:00
|
|
|
** $Id: lstring.h,v 1.17 2000/03/10 14:38:10 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
|
|
|
|
2000-03-10 11:38:10 -03:00
|
|
|
#define NUM_HASHSTR 32
|
2000-03-03 11:58:26 -03:00
|
|
|
#define NUM_HASHUDATA 31
|
1999-11-22 11:12:07 -02:00
|
|
|
#define NUM_HASHS (NUM_HASHSTR+NUM_HASHUDATA)
|
1999-10-04 15:51:04 -02:00
|
|
|
|
|
|
|
|
1999-10-11 14:13:42 -02:00
|
|
|
/*
|
|
|
|
** any taggedstring with mark>=FIXMARK is never collected.
|
|
|
|
** Marks>=RESERVEDMARK are used to identify reserved words.
|
|
|
|
*/
|
|
|
|
#define FIXMARK 2
|
|
|
|
#define RESERVEDMARK 3
|
|
|
|
|
1999-10-04 15:51:04 -02:00
|
|
|
|
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-03-10 15:37:44 -03:00
|
|
|
void luaS_free (lua_State *L, TString *ts);
|
|
|
|
TString *luaS_newlstr (lua_State *L, const char *str, long l);
|
|
|
|
TString *luaS_new (lua_State *L, const char *str);
|
|
|
|
TString *luaS_newfixed (lua_State *L, const char *str);
|
|
|
|
GlobalVar *luaS_assertglobal (lua_State *L, TString *ts);
|
1999-11-22 11:12:07 -02:00
|
|
|
GlobalVar *luaS_assertglobalbyname (lua_State *L, const char *name);
|
|
|
|
int luaS_globaldefined (lua_State *L, const char *name);
|
1997-12-01 18:31:25 -02:00
|
|
|
|
1997-09-16 16:25:59 -03:00
|
|
|
|
|
|
|
#endif
|