mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 04:49:25 +08:00
69080f58f0
* mingwex/isblank.c: Fix typo in declaration.
6 lines
118 B
C
Executable File
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');}
|