diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-05-16 15:39:46 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-05-16 15:39:46 -0300 |
commit | 955def034814e96f5f8e42def2e47ca6817ef103 (patch) | |
tree | d8eea96980860d1d1e5005ee6ecedb47fa64d594 /lobject.h | |
parent | 9c3b3f82fe1b0942183ddeef2e16d60bab4f4c06 (diff) | |
download | lua-955def034814e96f5f8e42def2e47ca6817ef103.tar.gz lua-955def034814e96f5f8e42def2e47ca6817ef103.tar.bz2 lua-955def034814e96f5f8e42def2e47ca6817ef103.zip |
new names for string formating functions
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.131 2002/05/07 17:36:56 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.132 2002/05/15 18:57:44 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,8 +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); | 253 | const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp); |
254 | const char *luaO_pushstr (lua_State *L, const char *fmt, ...); | 254 | const char *luaO_pushfstring (lua_State *L, const char *fmt, ...); |
255 | void luaO_chunkid (char *out, const char *source, int len); | 255 | void luaO_chunkid (char *out, const char *source, int len); |
256 | 256 | ||
257 | 257 | ||