source: trunk/libs/newlib/src/newlib/libc/ctype/isblank_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: 177 bytes
Line 
1#include <_ansi.h>
2#include <ctype.h>
3
4#undef isblank_l
5
6int
7isblank_l (int c, struct __locale_t *locale)
8{
9  return (__locale_ctype_ptr_l (locale)[c+1] & _B) || (c == '\t');
10}
Note: See TracBrowser for help on using the repository browser.