aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/ctype/isascii_l.c
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;
}