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

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

#undef toascii_l

int
toascii_l (int c, struct __locale_t *locale)
{
  return c & 0177;
}