1997-09-16 23:25:59 +04:00
|
|
|
/*
|
1999-11-04 20:23:12 +03:00
|
|
|
** $Id: lstring.h,v 1.11 1999/10/14 19:13:31 roberto Exp roberto $
|
1997-09-16 23:25:59 +04: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 23:13:31 +04:00
|
|
|
#include "lstate.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
|
1997-11-04 18:27:53 +03:00
|
|
|
|
1999-10-11 20:13:42 +04:00
|
|
|
#define NUM_HASHSTR 31 /* a prime not in array `dimensions' */
|
|
|
|
#define NUM_HASHUDATA 31 /* idem */
|
1999-10-04 21:51:04 +04:00
|
|
|
#define NUM_HASHS (NUM_HASHSTR+NUM_HASHUDATA)
|
|
|
|
|
|
|
|
|
1999-10-11 20:13:42 +04: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 21:51:04 +04:00
|
|
|
|
1997-11-04 18:27:53 +03:00
|
|
|
void luaS_init (void);
|
1999-10-14 23:13:31 +04:00
|
|
|
void luaS_grow (stringtable *tb);
|
1997-09-16 23:25:59 +04:00
|
|
|
TaggedString *luaS_createudata (void *udata, int tag);
|
1999-10-04 21:51:04 +04:00
|
|
|
void luaS_freeall (void);
|
|
|
|
void luaS_free (TaggedString *ts);
|
1999-08-17 00:52:00 +04:00
|
|
|
TaggedString *luaS_newlstr (const char *str, long l);
|
|
|
|
TaggedString *luaS_new (const char *str);
|
|
|
|
TaggedString *luaS_newfixedstring (const char *str);
|
1999-11-04 20:23:12 +03:00
|
|
|
GlobalVar *luaS_assertglobal (TaggedString *ts);
|
|
|
|
GlobalVar *luaS_assertglobalbyname (const char *name);
|
1999-08-17 00:52:00 +04:00
|
|
|
int luaS_globaldefined (const char *name);
|
1997-12-01 23:31:25 +03:00
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
#endif
|