summaryrefslogtreecommitdiff
path: root/include/strops.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/strops.hpp')
-rw-r--r--include/strops.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/strops.hpp b/include/strops.hpp
index 537e058..dd01b80 100644
--- a/include/strops.hpp
+++ b/include/strops.hpp
@@ -32,6 +32,9 @@ namespace strops {
/// @brief Check if `a` matches string `b`.
/// @return `true` when strings match, else `false`.
bool equals(const char* a, const char* b);
+
+ size_t length(const char* str);
+ bool empty(const char* str);
char* tokenize(char* a, const char* find);