first commit

This commit is contained in:
2024-04-25 10:38:13 +08:00
commit b6cffd8a97
20 changed files with 1181 additions and 0 deletions

8
src/IOHelper.hpp Normal file
View File

@ -0,0 +1,8 @@
#pragma once
#include <string>
namespace YYCC::IOHelper {
void GetCmdLine(std::string&);
FILE* UTF8FOpen(const char* u8_filepath, const char* u8_mode);
}