mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-21 18:30:20 +00:00
9bd9755dbb
Signed-off-by: Laurent Vivier <Laurent@Vivier.EU>
18 lines
233 B
C
18 lines
233 B
C
/*
|
|
*
|
|
* (c) 2008 Laurent Vivier <Laurent@Vivier.EU>
|
|
*
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include "libext2.h"
|
|
#include "ext2.h"
|
|
|
|
void ext2_closedir(stream_DIR *dir)
|
|
{
|
|
if (dir == NULL)
|
|
return;
|
|
free(((ext2_DIR*)dir)->inode);
|
|
free(dir);
|
|
}
|