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

src/utils.h: adding rtrim,ltrim,trim functions.

This commit is contained in:
Henrik Hautakoski 2019-12-20 14:29:24 +01:00
parent c5ebd757fa
commit bab45d8a5d
2 changed files with 25 additions and 0 deletions

View file

@ -31,4 +31,8 @@ std::vector<std::string> strsplit(const std::string& str, const std::string& del
void strtolower(std::string& str);
std::string& rtrim(std::string& str);
std::string& ltrim(std::string& str);
std::string& trim(std::string& str);
#endif /* UTILS_H */