mirror of
https://github.com/lua/lua
synced 2026-09-27 00:28:25 +03:00
String table (keep all strings handled by Lua)
This commit is contained in:
parent
ea169d2083
commit
daa858ef27
4 changed files with 207 additions and 249 deletions
21
lstring.h
Normal file
21
lstring.h
Normal file
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue