| 123456789101112131415161718192021222324 |
- /*
- ** $Id: lstring.h,v 1.4 1997/11/19 17:29:23 roberto Exp roberto $
- ** String table (keep all strings handled by Lua)
- ** See Copyright Notice in lua.h
- */
- #ifndef lstring_h
- #define lstring_h
- #include "lobject.h"
- void luaS_init (void);
- TaggedString *luaS_createudata (void *udata, int tag);
- TaggedString *luaS_collector (void);
- void luaS_free (TaggedString *l);
- TaggedString *luaS_new (char *str);
- TaggedString *luaS_newfixedstring (char *str);
- void luaS_rawsetglobal (TaggedString *ts, TObject *newval);
- char *luaS_travsymbol (int (*fn)(TObject *));
- int luaS_globaldefined (char *name);
- #endif
|