source: trunk/libs/newlib/src/newlib/libc/ctype/isxdigit_l.c @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 172 bytes
Line 
1#include <_ansi.h>
2#include <ctype.h>
3
4
5#undef isxdigit_l
6int
7isxdigit_l (int c, struct __locale_t *locale)
8{
9  return __locale_ctype_ptr_l (locale)[c+1] & ((_X)|(_N));
10}
11
Note: See TracBrowser for help on using the repository browser.