summaryrefslogtreecommitdiff
path: root/lstring.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-09-16 16:25:59 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-09-16 16:25:59 -0300
commitdaa858ef278ad136afcb62d7f625b491ffbd5fa3 (patch)
tree1b3ce52cd504f66b9bd00b301544ed9308ba85c8 /lstring.h
parentea169d20835aa7d2a42641decc5b5d802047afca (diff)
downloadlua-github-daa858ef278ad136afcb62d7f625b491ffbd5fa3.tar.gz
String table (keep all strings handled by Lua)
Diffstat (limited to 'lstring.h')
-rw-r--r--lstring.h21
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