2000-05-28 13:40:48 +00:00
|
|
|
/*
|
|
|
|
* int fclose (FILE* f);
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include "_file.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int fclose (FILE* f)
|
|
|
|
{
|
|
|
|
if ((f->f_flags & _FOPEN) == 0) {
|
|
|
|
/* File is not open */
|
|
|
|
_errno = EINVAL; /* File not input */
|
2002-03-24 13:26:18 +00:00
|
|
|
return EOF;
|
2000-05-28 13:40:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Reset the flags and close the file */
|
|
|
|
f->f_flags = _FCLOSED;
|
|
|
|
return close (f->f_fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|