summaryrefslogtreecommitdiff
path: root/libraries/euler/cctype.cpp
blob: 98234bbb707ab8ddd5b2af16ab8a08b599c4fb1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <cctype>

namespace std {

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

}