summaryrefslogtreecommitdiff
path: root/euler/source/std/cctype.cpp
blob: a35d1a58e1a261bb69ea4f46c93f6e3cd4ec112a (plain) (blame)
1
2
3
4
5
6
7
#include <cctype>

extern "C" int isspace(int ch) {
  return
    ch ==  ' ' || ch == '\f' || ch == '\n' ||
    ch == '\r' || ch == '\t' || ch == '\v';
}