diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-12-10 12:53:15 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-12-10 12:53:15 -0200 |
commit | 1aead7f5536c92cfbd1dd7dbb51f5ac95f239e14 (patch) | |
tree | 9e63224e38e4f72efb3da3a50771de3d99337d53 /lobject.h | |
parent | 75d8470f0f3719594637ddaba4bb9dbbb30e94ec (diff) | |
download | lua-1aead7f5536c92cfbd1dd7dbb51f5ac95f239e14.tar.gz lua-1aead7f5536c92cfbd1dd7dbb51f5ac95f239e14.tar.bz2 lua-1aead7f5536c92cfbd1dd7dbb51f5ac95f239e14.zip |
'hexafloat' moved to 'lobject.c' (hexa conversion needs it too)
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 2.43 2010/11/26 14:32:31 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 2.44 2010/12/06 21:08:36 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 | */ |
@@ -413,6 +413,7 @@ LUAI_FUNC int luaO_ceillog2 (lu_int32 x); | |||
413 | LUAI_FUNC lua_Number luaO_arith (int op, lua_Number v1, lua_Number v2); | 413 | LUAI_FUNC lua_Number luaO_arith (int op, lua_Number v1, lua_Number v2); |
414 | LUAI_FUNC int luaO_rawequalObj (const TValue *t1, const TValue *t2); | 414 | LUAI_FUNC int luaO_rawequalObj (const TValue *t1, const TValue *t2); |
415 | LUAI_FUNC int luaO_str2d (const char *s, size_t len, lua_Number *result); | 415 | LUAI_FUNC int luaO_str2d (const char *s, size_t len, lua_Number *result); |
416 | LUAI_FUNC int luaO_hexavalue (int c); | ||
416 | LUAI_FUNC const char *luaO_pushvfstring (lua_State *L, const char *fmt, | 417 | LUAI_FUNC const char *luaO_pushvfstring (lua_State *L, const char *fmt, |
417 | va_list argp); | 418 | va_list argp); |
418 | LUAI_FUNC const char *luaO_pushfstring (lua_State *L, const char *fmt, ...); | 419 | LUAI_FUNC const char *luaO_pushfstring (lua_State *L, const char *fmt, ...); |