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

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

#undef isascii_l

int
isascii_l (int c, struct __locale_t *locale)
{
  return c >= 0 && c < 128;
}