diff options
Diffstat (limited to 'lobject.h')
| -rw-r--r-- | lobject.h | 21 |
1 files changed, 10 insertions, 11 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lobject.h,v 2.10 2005/01/18 17:18:09 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 2.11 2005/02/18 12:40:02 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 | */ |
| @@ -360,16 +360,15 @@ extern const TValue luaO_nilobject; | |||
| 360 | 360 | ||
| 361 | #define ceillog2(x) (luaO_log2((x)-1) + 1) | 361 | #define ceillog2(x) (luaO_log2((x)-1) + 1) |
| 362 | 362 | ||
| 363 | int luaO_log2 (unsigned int x); | 363 | LUAI_FUNC int luaO_log2 (unsigned int x); |
| 364 | int luaO_int2fb (unsigned int x); | 364 | LUAI_FUNC int luaO_int2fb (unsigned int x); |
| 365 | int luaO_fb2int (int x); | 365 | LUAI_FUNC int luaO_fb2int (int x); |
| 366 | 366 | LUAI_FUNC int luaO_rawequalObj (const TValue *t1, const TValue *t2); | |
| 367 | int luaO_rawequalObj (const TValue *t1, const TValue *t2); | 367 | LUAI_FUNC int luaO_str2d (const char *s, lua_Number *result); |
| 368 | int luaO_str2d (const char *s, lua_Number *result); | 368 | LUAI_FUNC const char *luaO_pushvfstring (lua_State *L, const char *fmt, |
| 369 | 369 | va_list argp); | |
| 370 | const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp); | 370 | LUAI_FUNC const char *luaO_pushfstring (lua_State *L, const char *fmt, ...); |
| 371 | const char *luaO_pushfstring (lua_State *L, const char *fmt, ...); | 371 | LUAI_FUNC void luaO_chunkid (char *out, const char *source, int len); |
| 372 | void luaO_chunkid (char *out, const char *source, int len); | ||
| 373 | 372 | ||
| 374 | 373 | ||
| 375 | #endif | 374 | #endif |
