diff options
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 1d952874d..646400db0 100644 --- a/src/common/string_util.cpp +++ b/src/common/string_util.cpp | |||
| @@ -64,6 +64,10 @@ std::string ArrayToString(const u8* data, size_t size, int line_len, bool spaces | |||
| 64 | return oss.str(); | 64 | return oss.str(); |
| 65 | } | 65 | } |
| 66 | 66 | ||
| 67 | std::string StringFromBuffer(const std::vector<u8>& data) { | ||
| 68 | return std::string(data.begin(), std::find(data.begin(), data.end(), '\0')); | ||
| 69 | } | ||
| 70 | |||
| 67 | // Turns " hej " into "hej". Also handles tabs. | 71 | // Turns " hej " into "hej". Also handles tabs. |
| 68 | std::string StripSpaces(const std::string& str) { | 72 | std::string StripSpaces(const std::string& str) { |
| 69 | const size_t s = str.find_first_not_of(" \t\r\n"); | 73 | const size_t s = str.find_first_not_of(" \t\r\n"); |