diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-09-16 16:25:59 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-09-16 16:25:59 -0300 |
commit | daa858ef278ad136afcb62d7f625b491ffbd5fa3 (patch) | |
tree | 1b3ce52cd504f66b9bd00b301544ed9308ba85c8 /lstring.h | |
parent | ea169d20835aa7d2a42641decc5b5d802047afca (diff) | |
download | lua-github-daa858ef278ad136afcb62d7f625b491ffbd5fa3.tar.gz |
String table (keep all strings handled by Lua)
Diffstat (limited to 'lstring.h')
-rw-r--r-- | lstring.h | 21 |
1 files changed, 21 insertions, 0 deletions
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 |