|
a/src/utils/smallut.h |
|
b/src/utils/smallut.h |
|
... |
|
... |
52 |
* have the ascii values and can't appear as part of a multibyte char. utf-8 ok
|
52 |
* have the ascii values and can't appear as part of a multibyte char. utf-8 ok
|
53 |
* but so are the iso-8859-x and surely others.
|
53 |
* but so are the iso-8859-x and surely others.
|
54 |
*/
|
54 |
*/
|
55 |
extern bool stringToStrings(const string &s, list<string> &tokens);
|
55 |
extern bool stringToStrings(const string &s, list<string> &tokens);
|
56 |
extern bool stringToStrings(const string &s, vector<string> &tokens);
|
56 |
extern bool stringToStrings(const string &s, vector<string> &tokens);
|
|
|
57 |
extern bool stringToStrings(const string &s, set<string> &tokens);
|
57 |
|
58 |
|
58 |
/**
|
59 |
/**
|
59 |
* Inverse operation:
|
60 |
* Inverse operation:
|
60 |
*/
|
61 |
*/
|
61 |
extern void stringsToString(const list<string> &tokens, string &s);
|
62 |
extern void stringsToString(const list<string> &tokens, string &s);
|