ascii: add is_space

This commit is contained in:
Danny Robson 2016-08-02 18:50:26 +10:00
parent 5fee69debb
commit 3a0f20e68b

View File

@ -52,6 +52,26 @@ namespace util { namespace ascii {
{
return c - 'A' + 'a';
}
///////////////////////////////////////////////////////////////////////////
constexpr inline
bool
is_space (char c)
{
switch (c) {
case ' ':
case '\f':
case '\n':
case '\r':
case '\t':
case '\v':
return true;
default:
return false;
}
}
} }
#endif