39df6aa2ecd92c4db12c52458a1c6a44a54f0762
[gnulib.git] / doc / posix-functions / fopen.texi
1 @node fopen
2 @section @code{fopen}
3 @findex fopen
4
5 POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fopen.html}
6
7 Gnulib module: fopen
8
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 This function does not fail when the file name argument ends in a slash
13 and (without the slash) names a nonexistent file or a file that is not a
14 directory, on some platforms:
15 HP-UX 11.00, AIX 7.1, Solaris 9, Irix 5.3.
16 @item
17 On Windows platforms (excluding Cygwin), this function does usually not
18 recognize the @file{/dev/null} filename.
19 @end itemize
20
21 Portability problems not fixed by Gnulib:
22 @itemize
23 @item
24 On Windows platforms (excluding Cygwin), this function does not set @code{errno}
25 upon failure.
26 @item
27 On Windows, this function returns a file stream in ``text'' mode by default;
28 this means that it translates @code{'\n'} to CR/LF by default.  Use the
29 @code{"b"} flag if you need reliable binary I/O.
30 @item
31 On Windows platforms (excluding Cygwin), this function fails to open
32 directories for reading.  Such streams have implementation-defined
33 semantics on other platforms.  To avoid directory streams with a
34 consistent error message, use @code{fstat} after @code{open} and
35 @code{fdopen}, rather than @code{fopen} and @code{fileno}.
36 @end itemize