Lines Matching +full:mode +full:-
46 .Fn fopen "const char * restrict path" "const char * restrict mode"
48 .Fn fdopen "int fildes" "const char *mode"
50 .Fn freopen "const char *path" "const char *mode" "FILE *stream"
52 .Fn fmemopen "void * restrict buf" "size_t size" "const char * restrict mode"
62 .Fa mode
64 .Bl -tag -width indent
110 .Fa mode
117 .St -isoC
124 Any created files will have mode
145 .St -isoC
147 .St -p1003.1
150 an input operation encounters end-of-file.
156 The mode
157 of the stream must be compatible with the mode of the file descriptor.
160 mode option is ignored.
163 mode option is present, the
181 .Fa mode
191 attempts to re-open the file associated with
193 with a new mode.
194 The new mode must be compatible with the mode that the stream was originally
196 Streams open for reading can only be re-opened for reading,
197 streams open for writing can only be re-opened for writing,
198 and streams open for reading and writing can be re-opened in any mode.
201 mode option is not meaningful in this context.
234 Buffers can be opened in text-mode (default) or binary-mode
238 .Fa mode
240 Buffers opened in text-mode make sure that writes are terminated with a
243 Buffers opened in binary-mode never append a
262 .Bl -tag -width Er
265 .Fa mode
336 .St -isoC ,
339 mode option which conforms to
340 .St -isoC-2011 .
345 .St -p1003.1-88 .
348 mode option does not conform to any standard
354 .St -p1003.1-2008 .
357 mode does not conform to any standard