Welcome to mirror list, hosted at ThFree Co, Russian Federation.

isblank.c « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1dc1246d28aad1336a55509059cf4cfc251530c1 (plain)
1
2
3
4
5
#define __NO_CTYPE_LINES
#include <ctype.h>

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