18 #ifndef PSTORE_SUPPORT_CTYPE_HPP 19 #define PSTORE_SUPPORT_CTYPE_HPP 26 inline bool isspace (
char const c) {
29 auto const uc =
static_cast<unsigned char> (c);
32 return std::isspace (static_cast<int> (uc)) != 0;
35 inline bool isspace (
wchar_t const c) {
return std::iswspace (static_cast<wint_t> (c)) != 0; }
39 #endif // PSTORE_SUPPORT_CTYPE_HPP Definition: nonpod2.cpp:40