diff options
author | Liam <byteslice@airmail.cc> | 2024-02-20 21:17:59 -0500 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2024-02-20 22:15:38 -0500 |
commit | c575a85233cfea2e0935a5609e4e13d980a8c28f (patch) | |
tree | ebfb39a093a2042a8d15769532089a83c883d21a /src/common/string_util.cpp | |
parent | ea4703cb3111a21bc65588e3e01712b006f4d367 (diff) |
audio: rewrite IAudioDevice
Diffstat (limited to 'src/common/string_util.cpp')
-rw-r--r-- | src/common/string_util.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/string_util.cpp b/src/common/string_util.cpp index 72c4817989..1909aced54 100644 --- a/src/common/string_util.cpp +++ b/src/common/string_util.cpp @@ -38,6 +38,10 @@ std::string StringFromBuffer(std::span<const u8> data) { return std::string(data.begin(), std::find(data.begin(), data.end(), '\0')); } +std::string StringFromBuffer(std::span<const char> data) { + return std::string(data.begin(), std::find(data.begin(), data.end(), '\0')); +} + // Turns " hej " into "hej". Also handles tabs. std::string StripSpaces(const std::string& str) { const std::size_t s = str.find_first_not_of(" \t\r\n"); |