factor/native/arithmetic.h

14 lines
239 B
C
Raw Normal View History

#include "factor.h"
2004-09-19 00:33:40 -04:00
void primitive_arithmetic_type(void);
2004-08-04 22:43:58 -04:00
2004-08-29 15:56:30 -04:00
CELL tag_integer(FIXNUM x);
2004-09-06 02:32:04 -04:00
CELL tag_cell(CELL x);
CELL to_cell(CELL x);
2004-08-05 20:29:52 -04:00
bool realp(CELL tagged);
void primitive_numberp(void);
2004-08-04 22:43:58 -04:00
2004-08-05 20:29:52 -04:00
bool zerop(CELL tagged);
2004-09-18 22:29:29 -04:00
bool onep(CELL tagged);