diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.129 2002/04/05 18:54:31 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.130 2002/05/06 15:51:41 roberto Exp roberto $ |
3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -250,6 +250,8 @@ void *luaO_openspaceaux (lua_State *L, size_t n); | |||
250 | int luaO_equalObj (const TObject *t1, const TObject *t2); | 250 | int luaO_equalObj (const TObject *t1, const TObject *t2); |
251 | int luaO_str2d (const char *s, lua_Number *result); | 251 | int luaO_str2d (const char *s, lua_Number *result); |
252 | 252 | ||
253 | const char *luaO_vpushstr (lua_State *L, const char *fmt, va_list argp); | ||
254 | const char *luaO_pushstr (lua_State *L, const char *fmt, ...); | ||
253 | void luaO_verror (lua_State *L, const char *fmt, ...); | 255 | void luaO_verror (lua_State *L, const char *fmt, ...); |
254 | void luaO_chunkid (char *out, const char *source, int len); | 256 | void luaO_chunkid (char *out, const char *source, int len); |
255 | 257 | ||