]> gitweb.factorcode.org Git - factor.git/blob - vm/utilities.hpp
Merge branch 'master' of git@github.com:prunedtree/factor
[factor.git] / vm / utilities.hpp
1 namespace factor
2 {
3
4 void *safe_malloc(size_t size);
5 vm_char *safe_strdup(const vm_char *str);
6
7 void nl();
8 void print_string(const char *str);
9 void print_cell(cell x);
10 void print_cell_hex(cell x);
11 void print_cell_hex_pad(cell x);
12 void print_fixnum(fixnum x);
13 cell read_cell_hex();
14
15 }