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

string: typedef std::vector<std::string> to strlist_t

This commit is contained in:
Henrik Hautakoski 2020-01-09 06:48:59 +01:00
parent 372bb3c81e
commit c91d8ac33c
2 changed files with 8 additions and 6 deletions

View file

@ -27,9 +27,11 @@
#include <vector>
#include <string>
std::vector<std::string> strsplitwords(const std::string& str, const std::string& delim = ",");
typedef std::vector<std::string> strlist_t;
std::vector<std::string> strsplit(const std::string& str, const std::string& delim);
strlist_t strsplitwords(const std::string& str, const std::string& delim = ",");
strlist_t strsplit(const std::string& str, const std::string& delim);
std::string& strtolower(std::string& str);