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:
parent
372bb3c81e
commit
c91d8ac33c
2 changed files with 8 additions and 6 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue