Create fopen_utf8.h

This commit is contained in:
Alcaro 2017-12-04 16:32:40 +01:00 committed by GitHub
parent 059354de2f
commit d74ad6cd5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,5 @@
#include <stdio.h>
#ifdef _WIN32
#define fopen fopen_utf8
FILE* fopen_utf8(const char * filename, const char * mode);
#endif