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

iswdigit_l.c « ctype « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 29de9d38118d1261eb35b245379f90e18b4024d9 (plain)
1
2
3
4
5
6
7
8
#include <_ansi.h>
#include <wctype.h>

int
iswdigit_l (wint_t c, struct __locale_t *locale)
{
  return c >= (wint_t)'0' && c <= (wint_t)'9';
}