#ifndef standard_h #define standard_h #define no_mangle extern "C" int string_equal(const char* a, const char* b); int string_copy(char* dst, const char* src); /* Not safe! */ int f_to_buf(int f, char* buf); int int_to_buf(int n, char* buf); #endif