diff options
Diffstat (limited to 'src/utils/string.hpp')
| -rw-r--r-- | src/utils/string.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/utils/string.hpp b/src/utils/string.hpp index cfee5b7..9ec766c 100644 --- a/src/utils/string.hpp +++ b/src/utils/string.hpp @@ -4,4 +4,7 @@ namespace silly::editor::utils { std::vector<std::string> split_text(const std::string &text, char delimiter); + void ltrim(std::string &s); + void rtrim(std::string &s); + void trim(std::string &s); }
\ No newline at end of file |
