factor/vm/utilities.hpp

8 lines
132 B
C++
Raw Normal View History

2009-05-04 02:46:13 -04:00
namespace factor
{
2009-05-02 05:04:19 -04:00
void *safe_malloc(size_t size);
2009-05-04 05:50:24 -04:00
vm_char *safe_strdup(const vm_char *str);
2009-05-02 05:04:19 -04:00
void print_string(const char *str);
2009-05-04 02:46:13 -04:00
}