From cf87597226f5d6b269f1f2c4d6f402aa1eccb852 Mon Sep 17 00:00:00 2001 From: Maurus Cuelenaere Date: Thu, 21 May 2009 19:01:41 +0000 Subject: Commit FS#9174: Lua scripting language by Dan Everton git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21020 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/lua/lstring.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 apps/plugins/lua/lstring.h (limited to 'apps/plugins/lua/lstring.h') diff --git a/apps/plugins/lua/lstring.h b/apps/plugins/lua/lstring.h new file mode 100644 index 0000000000..c88e4c12a9 --- /dev/null +++ b/apps/plugins/lua/lstring.h @@ -0,0 +1,31 @@ +/* +** $Id$ +** String table (keep all strings handled by Lua) +** See Copyright Notice in lua.h +*/ + +#ifndef lstring_h +#define lstring_h + + +#include "lgc.h" +#include "lobject.h" +#include "lstate.h" + + +#define sizestring(s) (sizeof(union TString)+((s)->len+1)*sizeof(char)) + +#define sizeudata(u) (sizeof(union Udata)+(u)->len) + +#define luaS_new(L, s) (luaS_newlstr(L, s, strlen(s))) +#define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, \ + (sizeof(s)/sizeof(char))-1)) + +#define luaS_fix(s) l_setbit((s)->tsv.marked, FIXEDBIT) + +LUAI_FUNC void luaS_resize (lua_State *L, int newsize); +LUAI_FUNC Udata *luaS_newudata (lua_State *L, size_t s, Table *e); +LUAI_FUNC TString *luaS_newlstr (lua_State *L, const char *str, size_t l); + + +#endif -- cgit v1.2.3