aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/ctype/iswblank_l.c
blob: 69606937844f10201b8694ea9da795ee69e796f1 (plain)
1
2
3
4
5
6
7
8
9
10
#include <_ansi.h>
#include <wctype.h>

int
iswblank_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 iswblank (c);
}