Searched refs:isspace (Results 1 – 22 of 22) sorted by relevance
/picolibc-latest/newlib/libc/ctype/ |
D | isspace.c | 71 #undef isspace 73 isspace (int c) in isspace() function
|
D | iswspace.c | 75 return c < (wint_t)0x100 ? isspace (c) : 0; in iswspace()
|
D | isspace_l.c | 14 return isspace(c); in isspace_l()
|
D | iswspace_l.c | 24 return c < 0x100 ? isspace (c) : 0; in iswspace_l()
|
D | ctype.tex | 47 * Function isspace:: Whitespace character predicate (isspace, isspace_l) 101 @include ctype/isspace.def
|
D | CMakeLists.txt | 58 isspace.c
|
D | meson.build | 58 'isspace.c',
|
/picolibc-latest/newlib/libc/iconv/lib/ |
D | aliasesi.c | 111 if (!((p == table || isspace (*(p-1)) || *(p-1) == '\n') in find_alias() 112 && (p+l == table_end || isspace (*(p+l)) || *(p+l) == '\n'))) in find_alias() 124 for (end = p + 1; !isspace (*end) && *end != '\n' && *end != '\0'; end++); in find_alias()
|
/picolibc-latest/newlib/libc/tinystdio/ |
D | strtof.c | 72 while (isspace(nptr[len])) in strtof()
|
D | strtold.c | 74 while (isspace(nptr[len])) in strtold()
|
D | strtod.c | 73 while (isspace(nptr[len])) in strtod()
|
D | strtoi.h | 64 } while (isspace(i)); in strtoi()
|
D | vfscanf.c | 84 # define ISSPACE(c) isspace(c)
|
/picolibc-latest/newlib/libc/stdio/ |
D | nano-vfscanf.c | 260 if (isspace (*fmt)) in _SVFSCANF() 263 && isspace (*fp->_p)) in _SVFSCANF() 383 while (isspace (*fp->_p)) in _SVFSCANF()
|
D | vfscanf.c | 603 if (nbytes == 1 && isspace (wc)) in _SVFSCANF() 607 if (BufferEmpty || !isspace (*fp->_p)) in _SVFSCANF() 914 while (isspace (*fp->_p)) in _SVFSCANF() 1213 while (!isspace (*fp->_p) && width != 0) in _SVFSCANF() 1272 while (!isspace (*fp->_p)) in _SVFSCANF() 1294 while (!isspace (*fp->_p)) in _SVFSCANF()
|
D | nano-vfscanf_i.c | 63 || (pdata->code == CT_STRING && !isspace (*fp->_p))) in _scanf_chars()
|
/picolibc-latest/newlib/libc/include/ |
D | ctype.h | 77 int isspace (int c); 162 __declare_extern_inline(int) isspace (int c) in isspace() function 213 __declare_extern_inline(int) isspace_l (int c, locale_t l) { (void) l; return isspace(c); } in isspace_l() 260 #define isspace(__c) (__ctype_lookup(__c)&_S) macro
|
/picolibc-latest/newlib/libm/test/ |
D | test_is.c | 1934 static int def_isspace (int i) { return isspace(i); } in def_isspace() 1993 #undef isspace 2032 test_is_set(isspace, "isspace function", &myspace); in test_is()
|
/picolibc-latest/newlib/doc/ |
D | makedocbook.py | 53 while i < len(src) and (src[i].isspace() or (src[i] == '*' and src[i + 1] != '/')):
|
/picolibc-latest/newlib/libc/posix/ |
D | regcomp.c | 898 if (isspace((uch)c)) in p_b_cclass()
|
/picolibc-latest/newlib/ |
D | ChangeLog-2015 | 3656 isspace to avoid compiler warning. 5673 (isalpha, isupper, islower, isdigit, isxdigit, isspace, ispunct) 6297 (islower, isdigit, isxdigit, isspace, ispunct, isalnum) 6303 (isxdigit, isspace, ispunct, isalnum, isprint, isgraph) 8268 * libc/ctype/isspace.c: Ditto. 27709 isdigit, isgraph, islower, isprint, ispunct, isspace, isupper,
|
/picolibc-latest/ |
D | COPYING.picolibc | 1411 newlib/libc/ctype/isspace.c
|