mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 14:54:10 +00:00
10 lines
323 B
C
10 lines
323 B
C
#include <stdio.h>
|
|
#ifdef _WIN32
|
|
/* defined to error rather than fopen_utf8, to make clear to everyone reading the code that not worrying about utf16 is fine */
|
|
/* TODO: enable */
|
|
/* #define fopen (use fopen_utf8 instead) */
|
|
FILE* fopen_utf8(const char * filename, const char * mode);
|
|
#else
|
|
#define fopen_utf8 fopen
|
|
#endif
|