mirror of
https://github.com/vivier/EMILE.git
synced 2025-01-18 06:31:23 +00:00
17 lines
205 B
C
17 lines
205 B
C
|
/*
|
||
|
*
|
||
|
* (c) 2008 Laurent Vivier <Laurent@lvivier.info>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include "libext2.h"
|
||
|
|
||
|
void ext2_close(ext2_FILE *file)
|
||
|
{
|
||
|
if (file == NULL)
|
||
|
return;
|
||
|
free(file->inode);
|
||
|
free(file);
|
||
|
}
|