-

Functions HI-TECH C FCLOSE

From HI-TECH C for CP/M Fan WIKI(EN)
Revision as of 19:31, 31 July 2017 by Kumokosi (talk | contribs) (Created page with "<strong>FCLOSE</strong> ==SYNOPSIS== #include <stdio.h> int fclose(FILE * stream) ==DESCRIPTION== This routine closes the specified i/o stream. Stream should be a...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

FCLOSE

SYNOPSIS

#include  <stdio.h>

int fclose(FILE * stream)


DESCRIPTION

This routine closes the specified i/o stream. Stream should be a token returned by a previous call to fopen(). NULL is returned on a successful close, EOF otherwise.

SEE ALSO

fopen, fread, fwrite