Lines Matching full:file
18 @chapter Input and Output (@file{stdio.h})
27 The corresponding declarations are in @file{stdio.h}.
43 * Function clearerr:: Clear file or stream error indicator
44 * Function diprintf:: Print to a file descriptor (integer only)
45 * Function dprintf:: Print to a file descriptor
46 * Function fclose:: Close a file
48 * Function fdopen:: Turn an open file into a stream
49 * Function feof:: Test for end of file
51 * Function fflush:: Flush buffered file output
52 * Function fgetc:: Get a character from a file or stream
53 * Function fgetpos:: Record position in a stream or file
54 * Function fgets:: Get character string from a file or stream
55 * Function fgetwc:: Get a wide character from a file or stream
56 * Function fgetws:: Get a wide character string from a file or stream
57 * Function fileno:: Get file descriptor associated with stream
59 * Function fopen:: Open a file
62 * Function fputc:: Write a character on a stream or file
63 * Function fputs:: Write a character string in a file or stream
64 * Function fputwc:: Write a wide character to a file or stream
65 * Function fputws:: Write a wide character string to a file or stream
66 * Function fread:: Read array elements from a file
67 * Function freopen:: Open a file using an existing file descriptor
68 * Function fseek:: Set file position
69 * Function __fsetlocking:: Set or query locking mode on FILE stream
70 * Function fsetpos:: Restore position of a stream or file
71 * Function ftell:: Return position in a stream or file
73 * Function fwide:: Set and determine the orientation of a FILE stream
74 * Function fwrite:: Write array elements from memory to a file or stream
75 * Function getc:: Get a character from a file or stream (macro)
76 * Function getc_unlocked:: Get a character from a file or stream (macro)
79 * Function getdelim:: Get character string from a file or stream
80 * Function getline:: Get character string from a file or stream
82 * Function getw:: Get a word (int) from a file or stream
84 * Function mktemp:: Generate unused file name
87 * Function putc:: Write a character on a stream or file (macro)
88 * Function putc_unlocked:: Write a character on a stream or file (macro)
92 * Function putw:: Write a word (int) to a file or stream
94 * Function remove:: Delete a file's name
95 * Function rename:: Rename a file
96 * Function rewind:: Reinitialize a file or stream
97 * Function setbuf:: Specify full buffering for a file or stream
98 * Function setbuffer:: Specify full buffering for a file or stream with size
99 * Function setlinebuf:: Specify line buffering for a file or stream
100 * Function setvbuf:: Specify buffering for a file or stream
105 * Function stdio_ext:: Access internals of FILE structure
108 * Function tmpfile:: Create a temporary file
109 * Function tmpnam:: Generate name for a temporary file