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