finish terminal helper

This commit is contained in:
2024-05-20 21:41:48 +08:00
parent 7258c4c92b
commit 6ebb457bd1
14 changed files with 272 additions and 212 deletions

View File

@ -10,14 +10,14 @@
#define YYCC_OS YYCC_OS_LINUX
#endif
// Decide the char type we used
#include <string>
namespace YYCC {
#if defined(__cpp_char8_t)
using u8char = char8_t;
using u8string = std::u8string
#else
using u8char = char;
using u8string = std::string;
#endif
}
//// Decide the char type we used
//#include <string>
//namespace YYCC {
//#if defined(__cpp_char8_t)
// using u8char = char8_t;
// using u8string = std::std::string
//#else
// using u8char = char;
// using u8string = std::string;
//#endif
//}