1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2000-03-03 06:58:26 -08:00
|
|
|
** $Id: lstring.h,v 1.15 1999/12/14 18:42:57 roberto Exp roberto $
|
1997-09-16 12:25:59 -07: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 12:13:31 -07:00
|
|
|
#include "lstate.h"
|
1997-09-16 12:25:59 -07:00
|
|
|
|
1997-11-04 07:27:53 -08:00
|
|
|
|
2000-03-03 06:58:26 -08:00
|
|
|
#define NUM_HASHSTR 31
|
|
|
|
#define NUM_HASHUDATA 31
|
1999-11-22 05:12:07 -08:00
|
|
|
#define NUM_HASHS (NUM_HASHSTR+NUM_HASHUDATA)
|
1999-10-04 10:51:04 -07:00
|
|
|
|
|
|
|
|
1999-10-11 09:13:42 -07: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 10:51:04 -07:00
|
|
|
|
1999-11-22 05:12:07 -08:00
|
|
|
void luaS_init (lua_State *L);
|
1999-11-26 10:59:20 -08:00
|
|
|
void luaS_resize (lua_State *L, stringtable *tb, int newsize);
|
1999-11-22 05:12:07 -08:00
|
|
|
TaggedString *luaS_createudata (lua_State *L, void *udata, int tag);
|
|
|
|
void luaS_freeall (lua_State *L);
|
|
|
|
void luaS_free (lua_State *L, TaggedString *ts);
|
|
|
|
TaggedString *luaS_newlstr (lua_State *L, const char *str, long l);
|
|
|
|
TaggedString *luaS_new (lua_State *L, const char *str);
|
1999-12-14 10:42:57 -08:00
|
|
|
TaggedString *luaS_newfixed (lua_State *L, const char *str);
|
1999-11-22 05:12:07 -08:00
|
|
|
GlobalVar *luaS_assertglobal (lua_State *L, TaggedString *ts);
|
|
|
|
GlobalVar *luaS_assertglobalbyname (lua_State *L, const char *name);
|
|
|
|
int luaS_globaldefined (lua_State *L, const char *name);
|
1997-12-01 12:31:25 -08:00
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
#endif
|