diff options
| author | Amber Brault <celestialamber1@gmail.com> | 2026-05-07 09:24:55 +0200 |
|---|---|---|
| committer | Amber Brault <celestialamber1@gmail.com> | 2026-05-07 09:25:28 +0200 |
| commit | 3f5460a5ff318751b3effb85c4c57bbdd46e9ece (patch) | |
| tree | a3d1de70144416637e4e1e0ccfa7bf9ee4d03ef0 /Source/Core/Common/StringUtil.h | |
| parent | eb44b64c9ecbca2f6e346a1d2bdcdf00609f9f31 (diff) | |
Core: Implement automatic symbol demangling
Diffstat (limited to 'Source/Core/Common/StringUtil.h')
| -rw-r--r-- | Source/Core/Common/StringUtil.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/Common/StringUtil.h b/Source/Core/Common/StringUtil.h index 0cc4e6c15e..61404376d3 100644 --- a/Source/Core/Common/StringUtil.h +++ b/Source/Core/Common/StringUtil.h @@ -49,6 +49,8 @@ inline void CharArrayFromFormat(char (&out)[Count], const char* format, ...) std::string ArrayToString(const u8* data, u32 size, int line_len = 20, bool spaces = true); std::string_view StripWhitespace(std::string_view s); +std::string_view StripLeadingWhitespace(std::string_view s); +std::string_view StripTrailingWhitespace(std::string_view s); std::string_view StripSpaces(std::string_view s); std::string_view StripQuotes(std::string_view s); |
