Searched refs:fgetc (Results 1 – 20 of 20) sorted by relevance
/picolibc-latest/newlib/libc/tinystdio/ |
D | fgetc.c | 35 fgetc(FILE *stream) in fgetc() function 61 __strong_reference(fgetc, getc); 62 __strong_reference(fgetc, getc_unlocked); 64 int getc(FILE *stream) { return fgetc(stream); } in getc() 65 int getc_unlocked(FILE *stream) { return fgetc(stream); } in getc_unlocked()
|
D | stdio.h | 240 int fgetc(FILE *__stream); 243 #define getc(__stream) fgetc(__stream) 244 #define getchar() fgetc(stdin) 378 #define getc_unlocked(f) fgetc(f) 379 #define getchar_unlocked(f) fgetc(stdin) 381 #define putchar_unlocked(c, f) fgetc(c, stdin)
|
D | CMakeLists.txt | 58 fgetc.c
|
D | meson.build | 59 'fgetc.c',
|
/picolibc-latest/newlib/libc/machine/spu/ |
D | fgetc.c | 42 fgetc (FILE * fp) in fgetc() function
|
/picolibc-latest/newlib/libc/stdio/ |
D | fgetc.c | 88 fgetc ( in fgetc() function
|
D | stdio.tex | 52 * Function fgetc:: Get a character from a file or stream 148 @include stdio/fgetc.def
|
D | meson.build | 47 'fgetc.c',
|
D | stdio.h | 362 int fgetc (FILE *);
|
/picolibc-latest/test/ |
D | test-fgetc.c | 68 ch = fgetc(f); in main()
|
D | test-ungetc-ftell.c | 59 first = fgetc(file); in main()
|
D | t_fmemopen.c | 802 ATF_CHECK(fgetc(fp) == buf0[i]); in ATF_TC_BODY() 806 ATF_CHECK(fgetc(fp) == EOF); in ATF_TC_BODY() 890 ATF_CHECK(fgetc(fp) == buf[i]); in ATF_TC_BODY() 894 ATF_CHECK(fgetc(fp) == EOF); in ATF_TC_BODY() 904 ATF_CHECK(fgetc(fp) == buf[i]); in ATF_TC_BODY() 908 ATF_CHECK(fgetc(fp) == EOF); in ATF_TC_BODY()
|
D | meson.build | 88 'test-fgetc', 622 'test-fgetc',
|
/picolibc-latest/ |
D | picolibc.h.in | 8 /* Use atomics for fgetc/ungetc for re-entrancy */
|
D | CMakeLists.txt | 81 # Use atomics for fgetc/ungetc for re-entrancy
|
D | meson_options.txt | 165 description: 'use atomics in fgetc/ungetc to make them re-entrant')
|
D | meson.build | 1384 conf_data.set('ATOMIC_UNGETC', atomic_ungetc, description: 'Use atomics for fgetc/ungetc for re-ent…
|
D | README.md | 174 * Set error flag when fgetc is called on an file without read
|
D | COPYING.picolibc | 1325 test/test-fgetc.c 1965 newlib/libc/tinystdio/fgetc.c 2131 newlib/libc/machine/spu/fgetc.c 4455 newlib/libc/stdio/fgetc.c
|
/picolibc-latest/newlib/ |
D | ChangeLog-2015 | 1194 * libc/stdio/fgetc.c: Document unlocked variants. 2967 * libc/stdio/fgetc.c (fgetc): Use local variable for _REENT. 4345 * libc/stdio/fgetc.c: Revert change from 2009-04-24, remove sfp locks 6263 * libc/stdio/fgetc.c: Make sure sfp lock is acquired before the 10267 * libc/machine/spu/fgetc.c: Ditto. 10625 * libc/machine/spu/fgetc.c: Ditto. 10963 * libc/machine/spu/fgetc.c: Ditto. 11272 * libc/stdio/fgetc.c: Ditto. 11465 * libc/stdio/fgetc.c: Fix and/or add reentrant version to call 12991 * libc/stdio/fgetc.c (fgetc): Ditto. [all …]
|