2010-06-03 18:44:55 +00:00
|
|
|
#include "stringops.hpp"
|
2010-01-04 13:48:18 +00:00
|
|
|
|
2012-12-28 16:54:56 +00:00
|
|
|
#include <cctype>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <iterator>
|
|
|
|
|
2010-01-07 19:33:29 +00:00
|
|
|
#include <string.h>
|
2010-06-27 21:43:07 +00:00
|
|
|
#include <libs/platform/strings.h>
|
2012-12-28 16:54:56 +00:00
|
|
|
|
|
|
|
|
2010-01-07 19:33:29 +00:00
|
|
|
|
2011-06-19 16:14:03 +00:00
|
|
|
namespace Misc
|
|
|
|
{
|
|
|
|
|
2014-07-04 21:19:40 +00:00
|
|
|
std::locale StringUtils::mLocale = std::locale::classic();
|
2011-06-19 16:14:03 +00:00
|
|
|
|
|
|
|
}
|