1 .\" Copyright (c) 1990, 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" This code is derived from software contributed to Berkeley by
5 .\" Chris Torek and the American National Standards Committee X3,
6 .\" on Information Processing Systems.
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\" notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\" notice, this list of conditions and the following disclaimer in the
15 .\" documentation and/or other materials provided with the distribution.
16 .\" 3. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)fopen.3 8.1 (Berkeley) 6/4/93
43 .Nd stream open functions
49 .Fn fopen "const char * restrict path" "const char * restrict mode"
51 .Fn fdopen "int fildes" "const char *mode"
53 .Fn freopen "const char *path" "const char *mode" "FILE *stream"
55 .Fn fmemopen "void *restrict *buf" "size_t size" "const char * restrict mode"
60 opens the file whose name is the string pointed to by
62 and associates a stream with it.
66 points to a string beginning with one of the following letters:
67 .Bl -tag -width indent
70 The stream is positioned at the beginning of the file.
71 Fail if the file does not exist.
74 The stream is positioned at the beginning of the file.
75 Create the file if it does not exist.
78 The stream is positioned at the end of the file.
79 Subsequent writes to the file will always end up at the then current
80 end of file, irrespective of any intervening
83 Create the file if it does not exist.
93 opens the file for both reading and writing.
102 call to fail if the file already exists.
110 flag on the underlying file descriptor.
114 string can also include the letter
119 This is strictly for compatibility with
121 and has effect only for
127 Any created files will have mode
140 as modified by the process'
144 Reads and writes may be intermixed on read/write streams in any order; however,
145 a file positioning function must be called when switching between output and
146 input, unless an input operation encounters end-of-file.
150 function associates a stream with the existing file descriptor,
153 of the stream must be compatible with the mode of the file descriptor.
156 mode option is ignored.
159 mode option is present, the
161 flag is set, otherwise it remains unchanged.
162 When the stream is closed via
170 opens the file whose name is the string pointed to by
172 and associates the stream pointed to by
175 The original stream (if it exists) is closed.
178 argument is used just as in the
187 attempts to re-open the file associated with
190 The new mode must be compatible with the mode that the stream was originally
192 Streams open for reading can only be re-opened for reading,
193 streams open for writing can only be re-opened for writing,
194 and streams open for reading and writing can be re-opened in any mode.
197 mode option is not meaningful in this context.
199 The primary use of the
202 is to change the file associated with a
204 .Dv ( stderr , stdin ,
211 associates the buffer given by the
215 arguments with a stream.
218 argument is either a null pointer or a pointer to a buffer that
222 If a null pointer is specified as the
228 bytes of memory, and this allocation is automatically freed when the stream is
230 If a non-null pointer is specified, the caller retains ownership of
231 the buffer and is responsible for disposing of it after the stream has been
233 Buffers can be opened in text-mode (default) or binary-mode
236 is present in the second or third position of the
238 argument). Buffers opened in text-mode make sure that writes are terminated with
239 a NULL byte, if the last write hasn't filled up the whole buffer. Buffers
240 opened in binary-mode never append a NULL byte.
242 Upon successful completion
253 is returned and the global variable
255 is set to indicate the error.
278 may also fail and set
280 for any of the errors specified for the routine
286 may also fail and set
288 for any of the errors specified for the routine
294 may also fail and set
296 for any of the errors specified for the routine
302 may also fail and set
304 for any of the errors specified for the routines
313 may also fail and set
332 with the exception of the
334 mode option which conforms to
343 mode option does not conform to any standard
344 but is also supported by glibc.
352 mode does not conform to any standard
353 but is also supported by glibc.