| 6 | #include <windows.h> |
| 7 | |
| 8 | FILE* fopen_u8(const char* filename, const char* mode) { |
| 9 | return _wfopen(rack::string::UTF8toUTF16(filename).c_str(), rack::string::UTF8toUTF16(mode).c_str()); |
| 10 | } |
| 11 | |
| 12 | #endif |
| 13 |
nothing calls this directly
no test coverage detected