newlib/winsup/mingw/mingwex/isblank.c
Chris Sutcliffe 69080f58f0 2011-05-22 Antoine LECA <antoinel@users.sourceforge.net>
* mingwex/isblank.c:  Fix typo in declaration.
2011-05-23 02:38:49 +00:00

6 lines
118 B
C
Executable File

#define __NO_CTYPE_LINES
#include <ctype.h>
int __cdecl isblank (int c)
{return (_isctype(c, _BLANK) || c == '\t');}