1997-09-16 16:25:59 -03:00
|
|
|
/*
|
1999-11-26 16:59:20 -02:00
|
|
|
** $Id: lstring.h,v 1.13 1999/11/22 13:12:07 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
|
|
|
#define NUM_HASHSTR 31 /* a prime not in array `dimensions' */
|
|
|
|
#define NUM_HASHUDATA 31 /* idem */
|
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);
|
1999-11-22 11:12:07 -02: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);
|
|
|
|
TaggedString *luaS_newfixedstring (lua_State *L, const char *str);
|
|
|
|
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 18:31:25 -02:00
|
|
|
|
1997-09-16 16:25:59 -03:00
|
|
|
|
|
|
|
#endif
|