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

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

#undef islower_l

int
islower_l (int c, struct __locale_t *locale)
{
  return (__locale_ctype_ptr_l (locale)[c+1] & (_U|_L)) == _L;
}