diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-30 01:29:58 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-30 01:29:58 +0100 |
commit | b9e738502260b8f448289c9888203971c7749c76 (patch) | |
tree | 09477251ba49307173a112e0cd5dbdd3633346ce /frontend/strings.h | |
parent | e4261302944303781c952943e3290c99e2cabc52 (diff) |
WIP SQL gedoe
Diffstat (limited to 'frontend/strings.h')
-rw-r--r-- | frontend/strings.h | 9 |
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); |