lstring.h 470 B

123456789101112131415161718192021
  1. /*
  2. ** $Id: lstring.h,v 1.1 1997/08/14 20:23:40 roberto Exp roberto $
  3. ** String table (keep all strings handled by Lua)
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef lstring_h
  7. #define lstring_h
  8. #include "lobject.h"
  9. TaggedString *luaS_createudata (void *udata, int tag);
  10. TaggedString *luaS_collector (void);
  11. void luaS_free (TaggedString *l);
  12. void luaS_callIM (TaggedString *l);
  13. TaggedString *luaS_new (char *str);
  14. TaggedString *luaS_newfixedstring (char *str);
  15. #endif