Searched refs:isblank (Results 1 – 12 of 12) sorted by relevance
/picolibc-3.7.0-3.6.0/newlib/libc/ctype/ |
D | isblank.c | 42 isblank (int c) in isblank() function
|
D | iswblank.c | 75 return c < (wint_t)0x100 ? isblank (c) : 0; in iswblank()
|
D | isblank_l.c | 14 return isblank(c); in isblank_l()
|
D | iswblank_l.c | 23 return c < 0x100 ? isblank (c) : 0; in iswblank_l()
|
D | ctype.tex | 41 * isblank:: Blank character predicate (isblank, isblank_l) 83 @include ctype/isblank.def
|
D | CMakeLists.txt | 44 isblank.c
|
D | meson.build | 44 'isblank.c',
|
/picolibc-3.7.0-3.6.0/newlib/libc/include/ |
D | ctype.h | 86 int isblank (int c); 88 __declare_extern_inline(int) isblank(int c) { in isblank() function 208 __declare_extern_inline(int) isblank_l (int c, locale_t l) { (void) l; return isblank(c); } in isblank_l()
|
/picolibc-3.7.0-3.6.0/newlib/libc/posix/ |
D | regcomp.c | 867 if (isblank((uch)c)) in p_b_cclass()
|
/picolibc-3.7.0-3.6.0/ |
D | README.md | 183 using gnu_inline semantics. Fix isblank. This ensures that no
|
D | COPYING.picolibc | 2895 Files: newlib/libc/ctype/isblank.c
|
/picolibc-3.7.0-3.6.0/newlib/ |
D | ChangeLog-2015 | 641 * libc/ctype/Makefile.am (CHEWOUT_FILES): Add isblank.def. 642 * libc/ctype/ctype.tex: Include isblank and add to menu. 2883 * libc/ctype/isblank.c: Ditto. 5674 (isalnum, isprint, isgraph, iscntrl, isblank): Use it to fix bug 6298 (isprint, isgraph, iscntrl, isblank, toupper, tolower) 6304 (iscntrl, isblank, toupper, tolower): Rewrite to let 'gcc -Wall' 6566 * libc/ctype/isblank.c (isblank): Special case TAB. 6572 (isblank): Special case TAB. Redefine macro for GCC only. 6700 * libc/ctype/isblank.c: Replace hardcoded test with test for having _B 6702 * libc/include/ctype.h (isblank): Add macro. [all …]
|