forked from KolibriOS/kolibrios
21 lines
311 B
C
21 lines
311 B
C
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int fclose(FILE* file)
|
||
|
{
|
||
|
if(!file)
|
||
|
{
|
||
|
errno = E_INVALIDPTR;
|
||
|
return EOF;
|
||
|
}
|
||
|
|
||
|
if(file->buffer)
|
||
|
free(file->buffer);
|
||
|
if(file->filename)
|
||
|
free(file->filename);
|
||
|
free(file);
|
||
|
|
||
|
return 0;
|
||
|
}
|