RetroArch/libretro-common/include/compat/fopen_utf8.h

6 lines
125 B
C
Raw Normal View History

2017-12-04 15:32:40 +00:00
#include <stdio.h>
#ifdef _WIN32
#define fopen fopen_utf8
FILE* fopen_utf8(const char * filename, const char * mode);
#endif