Closes a file opened by imsl_fopen.
#include <imsl.h>
#include <stdio.h>
int imsl_fclose (FILE *file)
FILE *file
(Input/Output)
A file pointer returned from imsl_fopen.
The return value is zero if the file is successfully closed. If there is an error, EOF is returned. EOF is defined in stdio.h.
The function imsl_fclose is a wrapper around the standard C runtime function fclose. It is used to close files opened with imsl_fopen.
Note: This function is not prototyped in imsl.h. This is to avoid including stdio.h within imsl.h.
See imsl_fopen for an example of its use.