From daa858ef278ad136afcb62d7f625b491ffbd5fa3 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 16 Sep 1997 16:25:59 -0300 Subject: String table (keep all strings handled by Lua) --- lstring.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lstring.h (limited to 'lstring.h') diff --git a/lstring.h b/lstring.h new file mode 100644 index 00000000..74106224 --- /dev/null +++ b/lstring.h @@ -0,0 +1,21 @@ +/* +** $Id: lstring.h,v 1.1 1997/08/14 20:23:40 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" + + +TaggedString *luaS_createudata (void *udata, int tag); +TaggedString *luaS_collector (void); +void luaS_free (TaggedString *l); +void luaS_callIM (TaggedString *l); +TaggedString *luaS_new (char *str); +TaggedString *luaS_newfixedstring (char *str); + +#endif -- cgit v1.2.3-55-g6feb