git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Change %i to %d
[stg.git]
/
stglibs
/
common.lib
/
common.cpp
diff --git
a/stglibs/common.lib/common.cpp
b/stglibs/common.lib/common.cpp
index c02f675c943c9c93abd6cbb9407eda1d1d84ea32..7ba78e1d8b311e149ea0b705ee3b0102a3af423f 100644
(file)
--- a/
stglibs/common.lib/common.cpp
+++ b/
stglibs/common.lib/common.cpp
@@
-347,6
+347,20
@@
for (size_t i = 0; i < src.length() / 2; i++)
}
}
//---------------------------------------------------------------------------
}
}
//---------------------------------------------------------------------------
+std::string Encode12str(const std::string & src)
+{
+std::string res;
+Encode12str(res, src);
+return res;
+}
+//---------------------------------------------------------------------------
+std::string Decode21str(const std::string & src)
+{
+std::string res;
+Decode21str(res, src);
+return res;
+}
+//---------------------------------------------------------------------------
void Encode12(char * dst, const char * src, size_t srcLen)
{
for (size_t i = 0; i <= srcLen; i++)
void Encode12(char * dst, const char * src, size_t srcLen)
{
for (size_t i = 0; i <= srcLen; i++)
@@
-790,6
+804,13
@@
const std::string & x2str(uint64_t x, std::string & s)
return unsigned2str(x, s);
}
//---------------------------------------------------------------------------
return unsigned2str(x, s);
}
//---------------------------------------------------------------------------
+const std::string & x2str(double x, std::string & s)
+{
+char buf[256];
+s = snprintf(buf, sizeof(buf), "%f", x);
+return s;
+}
+//---------------------------------------------------------------------------
std::string & TrimL(std::string & val)
{
size_t pos = val.find_first_not_of(" \t");
std::string & TrimL(std::string & val)
{
size_t pos = val.find_first_not_of(" \t");
@@
-819,12
+840,18
@@
std::string & Trim(std::string & val)
return TrimR(TrimL(val));
}
//---------------------------------------------------------------------------
return TrimR(TrimL(val));
}
//---------------------------------------------------------------------------
+std::string Trim(const std::string & val)
+{
+std::string res(val);
+return TrimR(TrimL(res));
+}
+//---------------------------------------------------------------------------
std::string ToLower(const std::string & value)
{
std::string res;
for (std::string::size_type pos = 0; pos < value.length(); ++pos)
res += tolower(value[pos]);
std::string ToLower(const std::string & value)
{
std::string res;
for (std::string::size_type pos = 0; pos < value.length(); ++pos)
res += tolower(value[pos]);
- return
value
;
+ return
res
;
}
//---------------------------------------------------------------------------
std::string ToUpper(const std::string & value)
}
//---------------------------------------------------------------------------
std::string ToUpper(const std::string & value)
@@
-832,7
+859,7
@@
std::string ToUpper(const std::string & value)
std::string res;
for (std::string::size_type pos = 0; pos < value.length(); ++pos)
res += toupper(value[pos]);
std::string res;
for (std::string::size_type pos = 0; pos < value.length(); ++pos)
res += toupper(value[pos]);
- return
value
;
+ return
res
;
}
//---------------------------------------------------------------------------
#ifdef WIN32
}
//---------------------------------------------------------------------------
#ifdef WIN32