|
a/upmpd/upmpdutils.hxx |
|
b/upmpd/upmpdutils.hxx |
|
... |
|
... |
38 |
extern std::string path_cat(const std::string &s1, const std::string &s2);
|
38 |
extern std::string path_cat(const std::string &s1, const std::string &s2);
|
39 |
extern void trimstring(string &s, const char *ws = " \t");
|
39 |
extern void trimstring(string &s, const char *ws = " \t");
|
40 |
extern string path_tildexpand(const string &s);
|
40 |
extern string path_tildexpand(const string &s);
|
41 |
extern void stringToTokens(const string &s, vector<string> &tokens,
|
41 |
extern void stringToTokens(const string &s, vector<string> &tokens,
|
42 |
const string &delims = " \t", bool skipinit=true);
|
42 |
const string &delims = " \t", bool skipinit=true);
|
43 |
|
43 |
extern bool path_makepath(const string& path, int mode);
|
44 |
|
44 |
|
45 |
// Convert between db value to percent values (Get/Set Volume and VolumeDb)
|
45 |
// Convert between db value to percent values (Get/Set Volume and VolumeDb)
|
46 |
extern int percentodbvalue(int value);
|
46 |
extern int percentodbvalue(int value);
|
47 |
extern int dbvaluetopercent(int dbvalue);
|
47 |
extern int dbvaluetopercent(int dbvalue);
|
48 |
|
48 |
|