factor/native/boolean.h

8 lines
157 B
C
Raw Normal View History

INLINE CELL tag_boolean(CELL untagged)
{
return (untagged == false ? F : T);
}
2004-12-18 00:41:31 -05:00
DLLEXPORT void box_boolean(bool value);
DLLEXPORT bool unbox_boolean(void);