aboutsummaryrefslogtreecommitdiff
path: root/src/StringUtils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/StringUtils.cpp')
-rw-r--r--src/StringUtils.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/StringUtils.cpp b/src/StringUtils.cpp
index 16d3b48..981b227 100644
--- a/src/StringUtils.cpp
+++ b/src/StringUtils.cpp
@@ -1,4 +1,5 @@
#include "../include/StringUtils.hpp"
+#include <string.h>
namespace QuickMedia {
void string_split(const std::string &str, char delimiter, StringSplitCallback callback_func) {
@@ -47,4 +48,9 @@ namespace QuickMedia {
return str.substr(start, end - start + 1);
}
+
+ bool string_ends_with(const std::string &str, const std::string &ends_with_str) {
+ size_t ends_len = ends_with_str.size();
+ return ends_len == 0 || (str.size() >= ends_len && memcmp(&str[str.size() - ends_len], ends_with_str.data(), ends_len) == 0);
+ }
} \ No newline at end of file