Functions HI-TECH C FREOPEN

Revision as of 19:56, 31 July 2017 by Kumokosi (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

FREOPEN

SYNOPSIS

#include  <stdio.h>

FILE * freopen(char * name, char * mode, FILE * stream)


DESCRIPTION

Freopen() closes the given stream (if open) then reopens the stream attached to the file described by name. The mode of opening is given by mode. It either returns the stream argument, if successful, or NULL if not. See fopen() for more information.

SEE ALSO

fopen, fclose