mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-23 16:29:39 +00:00
17 lines
203 B
C
17 lines
203 B
C
/*
|
|
*
|
|
* (c) 2008 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include "libext2.h"
|
|
|
|
void ext2_closedir(ext2_DIR *dir)
|
|
{
|
|
if (dir == NULL)
|
|
return;
|
|
free(dir->inode);
|
|
free(dir);
|
|
}
|