C file input/output: Difference between revisions

Content deleted Content added
m lowercase is more specific than wrongtitle
remove "restrict" for consistency, since *all* the parameters for fopen and freopen and restrict
Line 4:
 
They are defined as
:<code>FILE * fopen(const char *path, const char *mode);</code>
:<code>FILE * fdopen(int fildes, const char *mode);</code>
:<code>FILE * freopen(const char *path, const char *mode, FILE * restrict stream);</code>
 
The '''<code>fdopen</code>''' function is not standard in C89 or C99, but is an extension used in [[POSIX]] environments and imitated elsewhere.