aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h21
1 files changed, 10 insertions, 11 deletions
diff --git a/lobject.h b/lobject.h
index ab0ddee7..25ce9705 100644
--- a/lobject.h
+++ b/lobject.h
@@ -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
363int luaO_log2 (unsigned int x); 363LUAI_FUNC int luaO_log2 (unsigned int x);
364int luaO_int2fb (unsigned int x); 364LUAI_FUNC int luaO_int2fb (unsigned int x);
365int luaO_fb2int (int x); 365LUAI_FUNC int luaO_fb2int (int x);
366 366LUAI_FUNC int luaO_rawequalObj (const TValue *t1, const TValue *t2);
367int luaO_rawequalObj (const TValue *t1, const TValue *t2); 367LUAI_FUNC int luaO_str2d (const char *s, lua_Number *result);
368int luaO_str2d (const char *s, lua_Number *result); 368LUAI_FUNC const char *luaO_pushvfstring (lua_State *L, const char *fmt,
369 369 va_list argp);
370const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp); 370LUAI_FUNC const char *luaO_pushfstring (lua_State *L, const char *fmt, ...);
371const char *luaO_pushfstring (lua_State *L, const char *fmt, ...); 371LUAI_FUNC void luaO_chunkid (char *out, const char *source, int len);
372void luaO_chunkid (char *out, const char *source, int len);
373 372
374 373
375#endif 374#endif