factor/vmpp/booleans.hpp

8 lines
160 B
C++
Raw Normal View History

2009-05-02 05:04:19 -04:00
INLINE CELL tag_boolean(CELL untagged)
{
return (untagged == false ? F : T);
}
DLLEXPORT void box_boolean(bool value);
DLLEXPORT bool to_boolean(CELL value);