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