|
a/src/utils/smallut.h |
|
b/src/utils/smallut.h |
|
... |
|
... |
50 |
extern void stringtolower(string& io);
|
50 |
extern void stringtolower(string& io);
|
51 |
extern string stringtolower(const string& io);
|
51 |
extern string stringtolower(const string& io);
|
52 |
|
52 |
|
53 |
// Is one string the end part of the other ?
|
53 |
// Is one string the end part of the other ?
|
54 |
extern int stringisuffcmp(const string& s1, const string& s2);
|
54 |
extern int stringisuffcmp(const string& s1, const string& s2);
|
|
|
55 |
|
|
|
56 |
// Divine language from locale
|
|
|
57 |
extern std::string localelang();
|
|
|
58 |
// Divine 8bit charset from language
|
|
|
59 |
extern std::string langtocode(const string& lang);
|
55 |
|
60 |
|
56 |
// Compare charset names, removing the more common spelling variations
|
61 |
// Compare charset names, removing the more common spelling variations
|
57 |
extern bool samecharset(const string &cs1, const string &cs2);
|
62 |
extern bool samecharset(const string &cs1, const string &cs2);
|
58 |
|
63 |
|
59 |
// Parse date interval specifier into pair of y,m,d dates. The format
|
64 |
// Parse date interval specifier into pair of y,m,d dates. The format
|