diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-06-01 15:19:08 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-06-02 06:26:26 +0200 |
commit | a1eeb9908d9cba0a51fbad519ce770b96d0a78d5 (patch) | |
tree | 937e4376d04b63b747d2e931b29b4ede31e9dbc5 /src/common/fs/fs_util.h | |
parent | Merge pull request #6361 from lat9nq/per-hb-cfg (diff) | |
download | yuzu-a1eeb9908d9cba0a51fbad519ce770b96d0a78d5.tar yuzu-a1eeb9908d9cba0a51fbad519ce770b96d0a78d5.tar.gz yuzu-a1eeb9908d9cba0a51fbad519ce770b96d0a78d5.tar.bz2 yuzu-a1eeb9908d9cba0a51fbad519ce770b96d0a78d5.tar.lz yuzu-a1eeb9908d9cba0a51fbad519ce770b96d0a78d5.tar.xz yuzu-a1eeb9908d9cba0a51fbad519ce770b96d0a78d5.tar.zst yuzu-a1eeb9908d9cba0a51fbad519ce770b96d0a78d5.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/fs/fs_util.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/common/fs/fs_util.h b/src/common/fs/fs_util.h index 951df53b6..de452c0f6 100644 --- a/src/common/fs/fs_util.h +++ b/src/common/fs/fs_util.h @@ -5,9 +5,12 @@ #pragma once #include <concepts> +#include <span> #include <string> #include <string_view> +#include "common/common_types.h" + namespace Common::FS { template <typename T> @@ -22,4 +25,24 @@ concept IsChar = std::same_as<T, char>; */ [[nodiscard]] std::u8string ToU8String(std::string_view utf8_string); +/** + * Converts a buffer of bytes to a UTF8-encoded std::u8string. + * This converts from the start of the buffer until the first encountered null-terminator. + * If no null-terminator is found, this converts the entire buffer instead. + * + * @param buffer Buffer of bytes + * + * @returns UTF-8 encoded std::u8string. + */ +[[nodiscard]] std::u8string BufferToU8String(std::span<const u8> buffer); + +/** + * Converts a std::u8string or std::u8string_view to a UTF-8 encoded std::string. + * + * @param u8_string UTF-8 encoded u8string + * + * @returns UTF-8 encoded std::string. + */ +[[nodiscard]] std::string ToUTF8String(std::u8string_view u8_string); + } // namespace Common::FS |