Searched refs:ungetc (Results 1 – 25 of 68) sorted by relevance
123
/glibc-2.36/stdio-common/ |
D | tst-ungetc.c | 40 assert (ungetc ('z', fp) == 'z'); in main() 44 assert (ungetc ('m', fp) == 'm'); in main() 48 assert (ungetc (c, fp) == c); in main() 59 assert (ungetc ('b', fp) == 'b'); in main()
|
D | vfscanf-internal.c | 78 # define ungetc(c, s) ((void) (c == WEOF \ macro 112 # define ungetc(c, s) ((void) ((int) c == EOF \ macro 471 ungetc (c, s); in __vfwscanf_internal() 633 ungetc (c, s); in __vfwscanf_internal() 1594 ungetc (c, s); in __vfwscanf_internal() 1646 ungetc (c, s); in __vfwscanf_internal() 1705 ungetc (c, s); in __vfwscanf_internal() 1778 ungetc (c, s); in __vfwscanf_internal() 1833 ungetc (c, s); in __vfwscanf_internal() 1840 ungetc (c, s); in __vfwscanf_internal() [all …]
|
D | tst-fseek.c | 377 else if (ungetc ('9', fp) == EOF) in do_test()
|
D | Makefile | 203 tst-ungetc \
|
/glibc-2.36/libio/ |
D | ioungetc.c | 30 ungetc (int c, FILE *fp) in ungetc() function 43 libc_hidden_def (ungetc) 44 strong_alias (ungetc, _IO_ungetc)
|
D | tst-bz22415.c | 47 TEST_VERIFY_EXIT (ungetc ('x', f) == 'x'); in do_test() 63 TEST_VERIFY_EXIT (ungetc ('x', f) == 'x'); in do_test()
|
D | bug-ungetc.c | 43 if (ungetc ('4', f) != '4') in do_test()
|
D | bug-ungetc3.c | 57 if (ungetc ('6', f) != '6') in do_one_test()
|
D | bug-ungetc2.c | 66 if (ungetc (' ', fp) == EOF) in do_test()
|
D | bug-ungetc4.c | 78 if (mode != 2 && ungetc ('X', f) != 'X') in do_one_test()
|
D | Versions | 74 ungetc;
|
D | Makefile | 58 tst-freopen bug-rewind bug-rewind2 bug-ungetc bug-fseek \
|
D | stdio.h | 668 extern int ungetc (int __c, FILE *__stream);
|
/glibc-2.36/nss/nss_files/ |
D | files-alias.c | 279 ungetc (ch, stream); in libc_hidden_def()
|
/glibc-2.36/include/ |
D | stdio.h | 216 libc_hidden_proto (ungetc)
|
/glibc-2.36/conform/data/ |
D | stdio.h-data | 161 function int ungetc (int, FILE*)
|
/glibc-2.36/manual/ |
D | stdio.texi | 1404 * How Unread:: How to call @code{ungetc} to do unreading. 1453 @subsection Using @code{ungetc} To Do Unreading 1455 The function to unread a character is called @code{ungetc}, because it 1458 @deftypefun int ungetc (int @var{c}, FILE *@var{stream}) 1461 The @code{ungetc} function pushes back the character @var{c} onto the 1465 If @var{c} is @code{EOF}, @code{ungetc} does nothing and just returns 1466 @code{EOF}. This lets you call @code{ungetc} with the return value of 1472 unreading them with @code{ungetc}! But that is a strange way to write a 1473 program; usually @code{ungetc} is used only to unread a character that 1478 words, it does not work to call @code{ungetc} twice without doing input [all …]
|
/glibc-2.36/ChangeLog.old/ |
D | ChangeLog.2 | 2269 * stdio/ungetc.c: Call __flshfp if linebuf_active or put_limit>buffer. 2324 * stdio/ungetc.c: Test STREAM->__pushed_back before flushing the 2370 * stdio/ungetc.c: If STREAM is writable and has something in its 3498 * stdio/fseek.c (fseek): Discard char pushed back by ungetc.
|
/glibc-2.36/sysdeps/unix/sysv/linux/or1k/ |
D | libc.abilist | 1998 GLIBC_2.35 ungetc F
|
/glibc-2.36/sysdeps/unix/sysv/linux/loongarch/lp64/ |
D | libc.abilist | 2025 GLIBC_2.36 ungetc F
|
/glibc-2.36/sysdeps/unix/sysv/linux/riscv/rv32/ |
D | libc.abilist | 2035 GLIBC_2.33 ungetc F
|
/glibc-2.36/sysdeps/mach/hurd/i386/ |
D | libc.abilist | 1794 GLIBC_2.2.6 ungetc F
|
/glibc-2.36/sysdeps/unix/sysv/linux/arc/ |
D | libc.abilist | 2025 GLIBC_2.32 ungetc F
|
/glibc-2.36/sysdeps/unix/sysv/linux/riscv/rv64/ |
D | libc.abilist | 2096 GLIBC_2.27 ungetc F
|
/glibc-2.36/sysdeps/unix/sysv/linux/aarch64/ |
D | libc.abilist | 2084 GLIBC_2.17 ungetc F
|
123