diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.128 2002/03/25 17:47:14 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.129 2002/04/05 18:54:31 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 | */ |
@@ -230,6 +230,15 @@ typedef struct Table { | |||
230 | #define sizearray(t) ((t)->sizearray) | 230 | #define sizearray(t) ((t)->sizearray) |
231 | 231 | ||
232 | 232 | ||
233 | /* | ||
234 | ** masks for comparison results | ||
235 | */ | ||
236 | #define CMP_EQ 1 | ||
237 | #define CMP_LT 2 | ||
238 | #define CMP_GT 4 | ||
239 | #define CMP_N 8 /* not comparable values (e.g. NaN) */ | ||
240 | |||
241 | |||
233 | extern const TObject luaO_nilobject; | 242 | extern const TObject luaO_nilobject; |
234 | 243 | ||
235 | int luaO_log2 (unsigned int x); | 244 | int luaO_log2 (unsigned int x); |