aboutsummaryrefslogtreecommitdiff
path: root/frontend/strings.h
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/strings.h')
-rw-r--r--frontend/strings.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/frontend/strings.h b/frontend/strings.h
index 678667e..affc835 100644
--- a/frontend/strings.h
+++ b/frontend/strings.h
@@ -15,9 +15,10 @@ bestaande acties te zien.)";
}
-void print_string(const char *);
+void str_print(const char *);
-std::string wrap_string(const char *);
-
-std::vector<std::string> split_string(const std::string & src, const std::string & delim);
+std::string str_wrap(const char *);
+std::vector<std::string> str_split(const std::string & src, const std::string & delim);
+std::string str_lower(const std::string & input);
+std::string str_title(const std::string & input);