1997-09-16 16:25:59 -03:00
|
|
|
/*
|
2018-08-23 14:26:12 -03:00
|
|
|
** $Id: lstring.h $
|
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
|
|
|
|
|
2003-11-17 17:50:05 -02:00
|
|
|
#include "lgc.h"
|
1997-09-16 16:25:59 -03:00
|
|
|
#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
|
|
|
|
2017-07-27 10:50:16 -03:00
|
|
|
/*
|
|
|
|
** Memory-allocation error message must be preallocated (it cannot
|
2017-11-23 17:29:04 -02:00
|
|
|
** be created after memory is exhausted)
|
2017-07-27 10:50:16 -03:00
|
|
|
*/
|
|
|
|
#define MEMERRMSG "not enough memory"
|
|
|
|
|
|
|
|
|
2019-03-13 14:14:40 -03:00
|
|
|
#define sizelstring(l) (sizeof(TString) + ((l) + 1) * sizeof(char))
|
2000-05-10 13:33:20 -03:00
|
|
|
|
2001-11-28 18:13:13 -02:00
|
|
|
#define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, \
|
|
|
|
(sizeof(s)/sizeof(char))-1))
|
2000-05-10 13:33:20 -03:00
|
|
|
|
2010-04-05 13:26:37 -03:00
|
|
|
|
|
|
|
/*
|
2012-01-23 21:04:07 -02:00
|
|
|
** test whether a string is a reserved word
|
2010-04-05 13:26:37 -03:00
|
|
|
*/
|
2020-01-31 11:09:53 -03:00
|
|
|
#define isreserved(s) ((s)->tt == LUA_VSHRSTR && (s)->extra > 0)
|
2012-01-23 21:04:07 -02:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2012-01-25 19:05:40 -02:00
|
|
|
** equality for short strings, which are always internalized
|
2012-01-23 21:04:07 -02:00
|
|
|
*/
|
2020-01-31 11:09:53 -03:00
|
|
|
#define eqshrstr(a,b) check_exp((a)->tt == LUA_VSHRSTR, (a) == (b))
|
2012-01-23 21:04:07 -02:00
|
|
|
|
2010-04-05 13:26:37 -03:00
|
|
|
|
2020-04-01 10:52:41 -03:00
|
|
|
LUAI_FUNC unsigned int luaS_hash (const char *str, size_t l,
|
|
|
|
unsigned int seed, size_t step);
|
2015-11-03 13:36:01 -02:00
|
|
|
LUAI_FUNC unsigned int luaS_hashlongstr (TString *ts);
|
2012-01-25 19:05:40 -02:00
|
|
|
LUAI_FUNC int luaS_eqlngstr (TString *a, TString *b);
|
2005-04-25 16:24:10 -03:00
|
|
|
LUAI_FUNC void luaS_resize (lua_State *L, int newsize);
|
2015-03-25 10:42:19 -03:00
|
|
|
LUAI_FUNC void luaS_clearcache (global_State *g);
|
2015-03-04 10:31:21 -03:00
|
|
|
LUAI_FUNC void luaS_init (lua_State *L);
|
2013-08-21 16:21:16 -03:00
|
|
|
LUAI_FUNC void luaS_remove (lua_State *L, TString *ts);
|
2018-02-20 13:52:50 -03:00
|
|
|
LUAI_FUNC Udata *luaS_newudata (lua_State *L, size_t s, int nuvalue);
|
2005-04-25 16:24:10 -03:00
|
|
|
LUAI_FUNC TString *luaS_newlstr (lua_State *L, const char *str, size_t l);
|
2010-04-03 17:24:18 -03:00
|
|
|
LUAI_FUNC TString *luaS_new (lua_State *L, const char *str);
|
2015-09-08 12:41:05 -03:00
|
|
|
LUAI_FUNC TString *luaS_createlngstrobj (lua_State *L, size_t l);
|
1997-12-01 18:31:25 -02:00
|
|
|
|
1997-09-16 16:25:59 -03:00
|
|
|
|
|
|
|
#endif
|