diff options
author | crupest <crupest@outlook.com> | 2019-04-01 16:08:12 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-04-01 16:08:12 +0800 |
commit | 055a3cde0cd19c896f3e498b774078654555c065 (patch) | |
tree | badbd1350daea36b87e98ada60f55ef5a2168bc9 /include/cru | |
parent | 0a429ee13c9fb9a9da6df62b1ebae101180278f5 (diff) | |
download | cru-055a3cde0cd19c896f3e498b774078654555c065.tar.gz cru-055a3cde0cd19c896f3e498b774078654555c065.tar.bz2 cru-055a3cde0cd19c896f3e498b774078654555c065.zip |
...
Diffstat (limited to 'include/cru')
-rw-r--r-- | include/cru/platform/string_util.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/cru/platform/string_util.hpp b/include/cru/platform/string_util.hpp new file mode 100644 index 00000000..c3b9f93b --- /dev/null +++ b/include/cru/platform/string_util.hpp @@ -0,0 +1,9 @@ +#pragma once +#include "cru/common/pre_config.hpp" + +#include <string> +#include <string_view> + +namespace cru::platform::util { +std::string ToUtf8String(const std::wstring_view& string); +} |