revise node structure for new fdl.texi
[gnulib.git] / doc / functions / fopen.texi
1 @node fopen
2 @section @code{fopen}
3 @findex fopen
4
5 POSIX specification: @url{http://www.opengroup.org/susv3xsh/fopen.html}
6
7 Gnulib module: ---
8
9 Portability problems fixed by Gnulib:
10 @itemize
11 @end itemize
12
13 Portability problems not fixed by Gnulib:
14 @itemize
15 @item
16 On Windows platforms (excluding Cygwin), this function does not set @code{errno}
17 upon failure.
18 @item
19 On Windows, this function returns a file stream in ``text'' mode by default;
20 this means that it translates @code{'\n'} to CR/LF by default.  Use the
21 @code{"b"} flag if you need reliable binary I/O.
22 @end itemize