-

Difference between revisions of "Functions HI-TECH C FCLOSE"

From HI-TECH C for CP/M Fan WIKI(EN)
Jump to: navigation, search
(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...")
 
(No difference)

Latest revision as of 19:31, 31 July 2017

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