Initial commit.
This commit is contained in:
commit
59c6161fdb
134 changed files with 4751 additions and 0 deletions
14
src/core/StringUtils.cpp
Normal file
14
src/core/StringUtils.cpp
Normal file
|
@ -0,0 +1,14 @@
|
|||
#include "StringUtils.h"
|
||||
#include <locale>
|
||||
|
||||
bool StringUtils::IsAlphaNumeric(char c)
|
||||
{
|
||||
std::locale loc;
|
||||
return std::isalnum(c, loc);
|
||||
}
|
||||
|
||||
bool StringUtils::IsSpace(char c)
|
||||
{
|
||||
std::locale loc;
|
||||
return std::isspace(c, loc);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue