1#ifndef __MDFN_ESCAPE_H 2#define __MDFN_ESCAPE_H 3 4// These functions are safe to call before calling MDFNI_Initialize(). 5 6void unescape_string(char *string); 7char* escape_string(const char *text); 8 9#endif 10 11