summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2022-05-21 05:35:10 +0200
committerGitHub <noreply@github.com>2022-05-21 05:35:10 +0200
commit4eb7f6c04473e3f90e2622ee00b822febe1ccef9 (patch)
treeb037dccee6a4b1a0b4228bef5d2af2f38526fb90 /src/common
parentMerge pull request #8351 from abouvier/patch-2 (diff)
parentqt_software_keyboard: Address review feedback (diff)
downloadyuzu-4eb7f6c04473e3f90e2622ee00b822febe1ccef9.tar
yuzu-4eb7f6c04473e3f90e2622ee00b822febe1ccef9.tar.gz
yuzu-4eb7f6c04473e3f90e2622ee00b822febe1ccef9.tar.bz2
yuzu-4eb7f6c04473e3f90e2622ee00b822febe1ccef9.tar.lz
yuzu-4eb7f6c04473e3f90e2622ee00b822febe1ccef9.tar.xz
yuzu-4eb7f6c04473e3f90e2622ee00b822febe1ccef9.tar.zst
yuzu-4eb7f6c04473e3f90e2622ee00b822febe1ccef9.zip
Diffstat (limited to 'src/common')
-rw-r--r--src/common/string_util.cpp4
-rw-r--r--src/common/string_util.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/common/string_util.cpp b/src/common/string_util.cpp
index 703aa5db8..7a495bc79 100644
--- a/src/common/string_util.cpp
+++ b/src/common/string_util.cpp
@@ -178,6 +178,10 @@ std::wstring UTF8ToUTF16W(const std::string& input) {
#endif
+std::u16string U16StringFromBuffer(const u16* input, std::size_t length) {
+ return std::u16string(reinterpret_cast<const char16_t*>(input), length);
+}
+
std::string StringFromFixedZeroTerminatedBuffer(std::string_view buffer, std::size_t max_len) {
std::size_t len = 0;
while (len < buffer.length() && len < max_len && buffer[len] != '\0') {
diff --git a/src/common/string_util.h b/src/common/string_util.h
index a33830aec..ce18a33cf 100644
--- a/src/common/string_util.h
+++ b/src/common/string_util.h
@@ -44,6 +44,8 @@ bool SplitPath(const std::string& full_path, std::string* _pPath, std::string* _
#endif
+[[nodiscard]] std::u16string U16StringFromBuffer(const u16* input, std::size_t length);
+
/**
* Compares the string defined by the range [`begin`, `end`) to the null-terminated C-string
* `other` for equality.