YYCCommonplace/src/IOHelper.hpp

9 lines
158 B
C++
Raw Normal View History

2024-04-25 10:38:13 +08:00
#pragma once
#include <string>
namespace YYCC::IOHelper {
void GetCmdLine(std::string&);
FILE* UTF8FOpen(const char* u8_filepath, const char* u8_mode);
}