#include "master.h"
/* FFI calls this */
void box_boolean(bool value)
{
dpush(value ? T : F);
}
bool to_boolean(CELL value)
return value != F;