diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-09-11 14:38:42 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-09-11 14:38:42 -0300 |
commit | 787a78f83e0484c9e9698189982e2f309808fae8 (patch) | |
tree | 0682eddf4ea5a49bf5078bac937a36f90057df57 /lobject.h | |
parent | 70c8a310925d6c41c3ef4f7feeae604a4c9a3a95 (diff) | |
download | lua-787a78f83e0484c9e9698189982e2f309808fae8.tar.gz lua-787a78f83e0484c9e9698189982e2f309808fae8.tar.bz2 lua-787a78f83e0484c9e9698189982e2f309808fae8.zip |
new scheme for buffers
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 1.73 2000/08/21 14:34:43 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.74 2000/08/22 17:44:17 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 | */ |
@@ -193,6 +193,7 @@ extern const TObject luaO_nilobject; | |||
193 | #define luaO_typename(o) luaO_typenames[ttype(o)] | 193 | #define luaO_typename(o) luaO_typenames[ttype(o)] |
194 | 194 | ||
195 | lint32 luaO_power2 (lint32 n); | 195 | lint32 luaO_power2 (lint32 n); |
196 | char *luaO_openspace (lua_State *L, size_t n); | ||
196 | 197 | ||
197 | int luaO_equalObj (const TObject *t1, const TObject *t2); | 198 | int luaO_equalObj (const TObject *t1, const TObject *t2); |
198 | int luaO_str2d (const char *s, Number *result); | 199 | int luaO_str2d (const char *s, Number *result); |