OLD | NEW |
1 /* | 1 /* |
2 ** $Id: lobject.h,v 2.71 2012/09/11 18:21:44 roberto Exp $ | 2 ** $Id: lobject.h,v 2.71 2012/09/11 18:21:44 roberto Exp $ |
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 */ |
6 | 6 |
7 | 7 |
8 #ifndef lobject_h | 8 #ifndef lobject_h |
9 #define lobject_h | 9 #define lobject_h |
10 | 10 |
(...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
597 LUAI_FUNC lua_Number luaO_arith (int op, lua_Number v1, lua_Number v2); | 597 LUAI_FUNC lua_Number luaO_arith (int op, lua_Number v1, lua_Number v2); |
598 LUAI_FUNC int luaO_str2d (const char *s, size_t len, lua_Number *result); | 598 LUAI_FUNC int luaO_str2d (const char *s, size_t len, lua_Number *result); |
599 LUAI_FUNC int luaO_hexavalue (int c); | 599 LUAI_FUNC int luaO_hexavalue (int c); |
600 LUAI_FUNC const char *luaO_pushvfstring (lua_State *L, const char *fmt, | 600 LUAI_FUNC const char *luaO_pushvfstring (lua_State *L, const char *fmt, |
601 va_list argp); | 601 va_list argp); |
602 LUAI_FUNC const char *luaO_pushfstring (lua_State *L, const char *fmt, ...); | 602 LUAI_FUNC const char *luaO_pushfstring (lua_State *L, const char *fmt, ...); |
603 LUAI_FUNC void luaO_chunkid (char *out, const char *source, size_t len); | 603 LUAI_FUNC void luaO_chunkid (char *out, const char *source, size_t len); |
604 | 604 |
605 | 605 |
606 #endif | 606 #endif |
607 | |
OLD | NEW |