summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/isspace.c
blob: ab39e81bca8cf94de74976983e5284bab6237f25 (plain)
1
2
3
4
5
6
#include <ctype.h>

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