doc: use ASCII in .texi files where UTF-8 isn't needed
[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 platforms where @code{off_t} is a 32-bit type, @code{fopen} may not work
18 correctly with files larger than 2 GB.  (Cf. @code{AC_SYS_LARGEFILE}.)
19 @item
20 On Windows platforms (excluding Cygwin), this function does usually not
21 recognize the @file{/dev/null} filename.
22 @end itemize
23
24 Portability problems not fixed by Gnulib:
25 @itemize
26 @item
27 On Windows platforms (excluding Cygwin), this function does not set @code{errno}
28 upon failure.
29 @item
30 On Windows, this function returns a file stream in ``text'' mode by default;
31 this means that it translates @code{'\n'} to CR/LF by default.  Use the
32 @code{"b"} flag if you need reliable binary I/O.
33 @item
34 On Windows platforms (excluding Cygwin), this function fails to open
35 directories for reading.  Such streams have implementation-defined
36 semantics on other platforms.  To avoid directory streams with a
37 consistent error message, use @code{fstat} after @code{open} and
38 @code{fdopen}, rather than @code{fopen} and @code{fileno}.
39 @end itemize