mirror of https://github.com/lua/lua
29 lines
608 B
C
29 lines
608 B
C
/*
|
|
** tree.h
|
|
** TecCGraf - PUC-Rio
|
|
** $Id: tree.h,v 1.13 1996/02/14 13:35:51 roberto Exp roberto $
|
|
*/
|
|
|
|
#ifndef tree_h
|
|
#define tree_h
|
|
|
|
#include "types.h"
|
|
|
|
#define NOT_USED 0xFFFE
|
|
|
|
|
|
typedef struct TaggedString
|
|
{
|
|
Word varindex; /* != NOT_USED if this is a symbol */
|
|
Word constindex; /* != NOT_USED if this is a constant */
|
|
unsigned long hash; /* 0 if not initialized */
|
|
int marked; /* for garbage collection; never collect (nor change) if > 1 */
|
|
char str[1]; /* \0 byte already reserved */
|
|
} TaggedString;
|
|
|
|
|
|
TaggedString *lua_createstring (char *str);
|
|
Long lua_strcollector (void);
|
|
|
|
#endif
|