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

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

int __cdecl iswblank (wint_t wc)
  {return (iswctype(wc, _BLANK) || wc == L'\t');}