Home
last modified time | relevance | path

Searched refs:scanf_getc (Results 1 – 2 of 2) sorted by relevance

/picolibc-latest/newlib/libc/tinystdio/
Dvfscanf.c112 scanf_getc(FILE *stream, scanf_context_t *context) in scanf_getc() function
153 i = scanf_getc (stream, context); in getmb()
171 i = scanf_getc(stream, context); in getmb()
178 #define getmb(s,c,p,f) scanf_getc(s,c)
258 i = scanf_getc (stream, context); /* after scanf_ungetc() */ in conv_int()
265 if (!--width || IS_EOF(i = scanf_getc(stream, context))) in conv_int()
273 if (!--width || IS_EOF(i = scanf_getc (stream, context))) in conv_int()
280 if (!--width || IS_EOF(i = scanf_getc (stream, context))) in conv_int()
285 if (!--width || IS_EOF(i = scanf_getc (stream, context))) in conv_int()
303 } while (!IS_EOF(i = scanf_getc(stream, context))); in conv_int()
[all …]
Dconv_flt.c66 static inline int scanf_getc(const char *s, int *lenp) in scanf_getc() function
211 i = scanf_getc (stream, context); /* after scanf_ungetc() */ in conv_flt()
218 if (!CHECK_WIDTH() || (i = scanf_getc (stream, context)) < 0) in conv_flt()
237 if ((i = scanf_getc (stream, context)) >= 0) { in conv_flt()
249 if ((i = scanf_getc (stream, context)) == '(') { in conv_flt()
250 while (CHECK_WIDTH() && (i = scanf_getc (stream, context)) != ')') { in conv_flt()
353 } while (CHECK_WIDTH() && (i = scanf_getc (stream, context)) >= 0); in conv_flt()
375 esign = scanf_getc (stream, context); in conv_flt()
386 edig = scanf_getc (stream, context); /* test EOF will below */ in conv_flt()
408 } while (CHECK_WIDTH() && isdigit (i = scanf_getc(stream, context))); in conv_flt()