Searched refs:ungetc (Results 1 – 25 of 30) sorted by relevance
12
/picolibc-latest/test/ |
D | ungetc.c | 44 ret = ungetc('u', stdin); in main()
|
D | test-ungetc-ftell.c | 65 ungetc(first, file); // Use ungetc to put the character back in main()
|
D | meson.build | 36 plain_tests_common = ['regex', 'ungetc', 87 'test-ungetc-ftell', 584 plain_tests = ['rand', 'regex', 'ungetc', 'fenv', 621 'test-ungetc-ftell',
|
D | CMakeLists.txt | 41 ungetc
|
D | test-fread-fwrite.c | 233 ungetc(c + 1, f); in main()
|
/picolibc-latest/newlib/libc/tinystdio/ |
D | ungetc.c | 35 ungetc(int c, FILE *stream) in ungetc() function
|
D | meson.build | 146 'ungetc.c', 203 # atomic support for ungetc
|
D | CMakeLists.txt | 143 ungetc.c
|
D | stdio.h | 245 int ungetc(int __c, FILE *__stream);
|
D | vfscanf.c | 83 # define UNGETC(c,s) ungetc(c,s)
|
/picolibc-latest/newlib/libc/machine/spu/ |
D | ungetc.c | 50 ungetc (c, fp) in ungetc() function
|
/picolibc-latest/newlib/libc/stdio/ |
D | ungetwc.c | 94 if (ungetc( (unsigned char)buf[len], fp) == EOF) in ungetwc()
|
D | vfscanf.c | 1097 ungetc ( (unsigned char) buf[--s], fp); in _SVFSCANF() 1234 ungetc ( (unsigned char) buf[--s], fp); in _SVFSCANF() 1465 ungetc ( *--p, fp); /* [-+xX] */ in _SVFSCANF() 1792 ungetc ( (unsigned char) decpt[decptpos], in _SVFSCANF() 1830 ungetc ( *--p, fp); /* [-+nNaA] */ in _SVFSCANF() 1843 ungetc ( *--p, fp); /* [iInNtT] */ in _SVFSCANF() 1850 ungetc ( *--p, fp); /* [-+iInN] */ in _SVFSCANF() 1868 ungetc ( *--p, fp); /* [-+.] */ in _SVFSCANF() 1878 ungetc ( c, fp); /* [-+] */ in _SVFSCANF() 1882 ungetc ( c, fp); /* [eE] */ in _SVFSCANF()
|
D | nano-vfscanf_local.h | 60 #define ungetc sungetc macro
|
D | ungetc.c | 112 ungetc ( in ungetc() function
|
D | fread.c | 123 ungetc (c, fp); in crlf_r()
|
D | nano-vfscanf.c | 249 scan_data.pfn_ungetc = ungetc; in _SVFSCANF()
|
D | stdio.h | 372 int ungetc (int, FILE *); 684 ungetc(__c2, __p); in _sgetc()
|
D | stdio.tex | 110 * Function ungetc:: Push data back into a stream 322 @include stdio/ungetc.def
|
D | meson.build | 109 'ungetc.c',
|
/picolibc-latest/doc/ |
D | locking.md | 24 reentrancy issue related to ungetc/getc.
|
D | printf.md | 246 * `-Datomic-ungetc=true` This option, which is enabled by default, 247 controls whether getc/ungetc use atomic instruction sequences to 249 getc and ungetc may corrupt the state of the input buffer.
|
D | build.md | 84 | atomic-ungetc | true | Make getc/ungetc re-entrant using atomic operations …
|
/picolibc-latest/ |
D | picolibc.h.in | 8 /* Use atomics for fgetc/ungetc for re-entrancy */
|
D | meson_options.txt | 164 option('atomic-ungetc', type: 'boolean', value: true, 165 description: 'use atomics in fgetc/ungetc to make them re-entrant')
|
12