Lines Matching full:file
20 <<fputc>>, <<fputc_unlocked>>---write a character on a stream or file
33 int fputc(int <[ch]>, FILE *<[fp]>);
37 int fputc_unlocked(int <[ch]>, FILE *<[fp]>);
40 int fputc( int <[ch]>, FILE *<[fp]>);
43 int fputc_unlocked( int <[ch]>, FILE *<[fp]>);
47 <<unsigned char>>, then writes it to the file or stream identified by
50 If the file was opened with append mode (or if the stream cannot
52 file or stream. Otherwise, the new character is written at the
62 if they are called while the invoking thread owns the (FILE *)
92 FILE * file) in fputc() argument
95 CHECK_INIT(ptr, file); in fputc()
96 _newlib_flockfile_start (file); in fputc()
97 result = putc ( ch, file); in fputc()
98 _newlib_flockfile_end (file); in fputc()