source: trunk/libs/newlib/src/newlib/libc/ctype/isprint_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: 307 bytes
Line 
1#include <_ansi.h>
2#include <ctype.h>
3
4#undef isgraph_l
5
6int
7isgraph_l (int c, struct __locale_t *locale)
8{
9  return __locale_ctype_ptr_l (locale)[c+1] & (_P|_U|_L|_N);
10}
11
12#undef isprint_l
13
14int
15isprint_l (int c, struct __locale_t *locale)
16{
17  return __locale_ctype_ptr_l (locale)[c+1] & (_P|_U|_L|_N|_B);
18}
Note: See TracBrowser for help on using the repository browser.