1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-keygen synced 2026-06-18 04:00:03 +02:00

string: adding strjoin() function

This commit is contained in:
Henrik Hautakoski 2020-01-15 12:30:49 +01:00
parent 4f4444a62a
commit 5bc3335d54
2 changed files with 17 additions and 0 deletions

View file

@ -33,6 +33,8 @@ strlist_t strsplitwords(const std::string& str, const std::string& delim = ",");
strlist_t strsplit(const std::string& str, const std::string& delim);
std::string strjoin(const strlist_t& list, const std::string& delim);
std::string& strtolower(std::string& str);
std::string& rtrim(std::string& str);