YYCCommonplace/src/IOHelper.hpp

24 lines
651 B
C++
Raw Normal View History

2024-04-25 10:38:13 +08:00
#pragma once
2024-04-26 15:37:28 +08:00
#include "YYCCInternal.hpp"
#if YYCC_OS == YYCC_OS_WINDOWS
#include <cstdio>
2024-04-25 10:38:13 +08:00
namespace YYCC::IOHelper {
/**
* @brief Set given FILE* as UTF8 mode.
* @param fs[in] The FILE* need to be set as UTF8 mode.
* @return True if success, otherwise false.
* @warning Once this function success, you can not use any narrow char function on this FILE*,
* such as std::fputs, std::fprintf and etc. You only can use wide char function on it,
* or use the functions provided in this namespace by providing UTF8 string as their argument.
*/
bool futf8(FILE* fs);
2024-04-25 10:38:13 +08:00
FILE* fopen(const char* u8_filepath, const char* u8_mode);
2024-04-26 15:37:28 +08:00
2024-04-25 10:38:13 +08:00
}
2024-04-26 15:37:28 +08:00
#endif