Searched refs:fputc (Results 1 – 16 of 16) sorted by relevance
/picolibc-latest/newlib/libc/tinystdio/ |
D | fputc.c | 35 fputc(int c, FILE *stream) in fputc() function 51 __strong_reference(fputc, putc); 52 __strong_reference(fputc, putc_unlocked); 54 int putc(int c, FILE *stream) { return fputc(c, stream); } in putc() 55 int putc_unlocked(int c, FILE *stream) { return fputc(c, stream); } in putc_unlocked()
|
D | stdio.h | 218 int fputc(int __c, FILE *__stream); 221 #define putc(__c, __stream) fputc(__c, __stream) 222 #define putchar(__c) fputc(__c, stdout) 380 #define putc_unlocked(c, f) fputc(c, f)
|
D | CMakeLists.txt | 70 fputc.c
|
D | meson.build | 72 'fputc.c',
|
/picolibc-latest/newlib/libc/stdio/ |
D | sfputs.c | 18 if (fputc (buf[i], fp) == EOF) in __sfputs()
|
D | fputc.c | 90 fputc ( in fputc() function
|
D | stdio.tex | 62 * Function fputc:: Write a character on a stream or file 178 @include stdio/fputc.def
|
D | meson.build | 56 'fputc.c',
|
D | stdio.h | 364 int fputc (int, FILE *);
|
/picolibc-latest/newlib/libc/machine/spu/ |
D | fputc.c | 50 fputc (c, fp) in fputc() function
|
/picolibc-latest/test/ |
D | test-put.c | 75 a = fputc('Z', stdout); in main()
|
D | t_fmemopen.c | 1005 ATF_CHECK(fputc(t->s[i], fp) == t->s[i]); in ATF_TC_BODY() 1018 ATF_CHECK(fputc(0x1, fp) == EOF); in ATF_TC_BODY() 1026 ATF_CHECK(fputc('\0', fp) == '\0'); in ATF_TC_BODY() 1031 ATF_CHECK(fputc('\0', fp) == EOF); in ATF_TC_BODY() 1083 ATF_CHECK(fputc('\0', fp) == EOF); in ATF_TC_BODY() 1121 ATF_CHECK(fputc(t->s[i - len], fp) in ATF_TC_BODY() 1134 ATF_CHECK(fputc(0x1, fp) == EOF); in ATF_TC_BODY() 1140 ATF_CHECK(fputc('\0', fp) == '\0'); in ATF_TC_BODY() 1146 ATF_CHECK(fputc('\0', fp) == EOF); in ATF_TC_BODY()
|
/picolibc-latest/newlib/libc/stdlib/ |
D | getopt.c | 360 fputc (argv[data->optind][data->optwhere], stderr); in getopt_internal() 403 fputc ('-', stderr); in getopt_internal() 409 fputc (*cp, stderr); in getopt_internal()
|
/picolibc-latest/ |
D | README.md | 644 value on buffer overflow, add ftello/fseeko, fputc return value,
|
D | COPYING.picolibc | 1995 newlib/libc/tinystdio/fputc.c 2136 newlib/libc/machine/spu/fputc.c 4465 newlib/libc/stdio/fputc.c
|
/picolibc-latest/newlib/ |
D | ChangeLog-2015 | 1207 * libc/stdio/fputc.c: Document unlocked variants. 2422 * newlib/libc/stdlib/getopt.c (getopt_internal): Use fputs()/fputc() 2970 * libc/stdio/fputc.c (fputc): Likewise. 10273 * libc/machine/spu/fputc.c: Ditto. 10631 * libc/machine/spu/fputc.c: Ditto. 10967 * libc/machine/spu/fputc.c: Ditto. 11276 * libc/stdio/fputc.c: Ditto. 11468 * libc/stdio/fputc.c: Ditto. 12994 * libc/stdio/fputc.c (fputc): Ditto. 13987 libc/stdio/fputc.c libc/stdio/fputs.c libc/stdio/fread.c, [all …]
|