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: 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');}