diff options
Diffstat (limited to 'src/FbTk/StringUtil.hh')
-rw-r--r-- | src/FbTk/StringUtil.hh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/FbTk/StringUtil.hh b/src/FbTk/StringUtil.hh index a16e709..9e45460 100644 --- a/src/FbTk/StringUtil.hh +++ b/src/FbTk/StringUtil.hh | |||
@@ -36,10 +36,14 @@ namespace StringUtil { | |||
36 | /// @return 1 - ok, result stored in 'out' | 36 | /// @return 1 - ok, result stored in 'out' |
37 | int extractNumber(const std::string& in, unsigned int& out); | 37 | int extractNumber(const std::string& in, unsigned int& out); |
38 | int extractNumber(const std::string& in, int& out); | 38 | int extractNumber(const std::string& in, int& out); |
39 | int extractNumber(const std::string& in, unsigned long& out); | ||
40 | int extractNumber(const std::string& in, long& out); | ||
41 | int extractNumber(const std::string& in, long long& out); | ||
42 | int extractNumber(const std::string& in, unsigned long& out); | ||
39 | /// \@} | 43 | /// \@} |
40 | 44 | ||
41 | /// creates a number to a string | 45 | /// creates a number to a string |
42 | std::string number2String(int num); | 46 | std::string number2String(long long num); |
43 | 47 | ||
44 | /// Similar to `strstr' but this function ignores the case of both strings | 48 | /// Similar to `strstr' but this function ignores the case of both strings |
45 | const char *strcasestr(const char *str, const char *ptn); | 49 | const char *strcasestr(const char *str, const char *ptn); |