aboutsummaryrefslogtreecommitdiff
path: root/winsup/mingw/mingwex/isblank.c
blob: d3ba74d39502859f6c04f1fd7ad9faf2b3caa911 (plain)
1
2
3
4
5
#define __NO_CTYPE_LINES
#include <ctype.h>

int _cdecl isblank (int c)
{return (_isctype(c, _BLANK) || c == '\t');}