summaryrefslogtreecommitdiff
path: root/src/FbTk
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbTk')
-rw-r--r--src/FbTk/StringUtil.cc7
-rw-r--r--src/FbTk/StringUtil.hh2
2 files changed, 9 insertions, 0 deletions
diff --git a/src/FbTk/StringUtil.cc b/src/FbTk/StringUtil.cc
index 18e000e..a0e402d 100644
--- a/src/FbTk/StringUtil.cc
+++ b/src/FbTk/StringUtil.cc
@@ -60,6 +60,13 @@ namespace FbTk {
60 60
61namespace StringUtil { 61namespace StringUtil {
62 62
63
64std::string number2String(int num) {
65 char s[128];
66 sprintf(s, "%d", num);
67 return std::string(s);
68}
69
63/** 70/**
64 Tries to find a string in another and 71 Tries to find a string in another and
65 ignoring the case of the characters 72 ignoring the case of the characters
diff --git a/src/FbTk/StringUtil.hh b/src/FbTk/StringUtil.hh
index 35f23a2..6493f74 100644
--- a/src/FbTk/StringUtil.hh
+++ b/src/FbTk/StringUtil.hh
@@ -30,6 +30,8 @@ namespace FbTk {
30 30
31namespace StringUtil { 31namespace StringUtil {
32 32
33/// creates a number to a string
34std::string number2String(int num);
33 35
34/// Similar to `strstr' but this function ignores the case of both strings 36/// Similar to `strstr' but this function ignores the case of both strings
35const char *strcasestr(const char *str, const char *ptn); 37const char *strcasestr(const char *str, const char *ptn);