9 lines
158 B
C++
9 lines
158 B
C++
|
#pragma once
|
||
|
#include <string>
|
||
|
|
||
|
namespace YYCC::IOHelper {
|
||
|
|
||
|
void GetCmdLine(std::string&);
|
||
|
FILE* UTF8FOpen(const char* u8_filepath, const char* u8_mode);
|
||
|
}
|