kolibrios-fun/programs/games/nsider/stdio/fclose.c

9 lines
129 B
C
Raw Normal View History

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
void fclose(FILE* file)
{
free(file->buffer);
free(file);
}