Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/psx/mednadisc/string/escape.h
2 views
1
#ifndef __MDFN_ESCAPE_H
2
#define __MDFN_ESCAPE_H
3
4
// These functions are safe to call before calling MDFNI_Initialize().
5
6
void unescape_string(char *string);
7
char* escape_string(const char *text);
8
9
#endif
10
11