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

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

int
iswpunct_l (wint_t c, struct __locale_t *locale)
{
  /* We're using a locale-independent representation of upper/lower case
     based on Unicode data.  Thus, the locale doesn't matter. */
  return !iswalnum (c) && iswgraph (c);
}