mirror of
https://github.com/vivier/EMILE.git
synced 2025-01-10 14:30:09 +00:00
20 lines
213 B
C
20 lines
213 B
C
|
/*
|
||
|
*
|
||
|
* (c) 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#include "libiso9660.h"
|
||
|
|
||
|
int iso9660_closedir(iso9660_DIR *dir)
|
||
|
{
|
||
|
if (dir == NULL)
|
||
|
return -1;
|
||
|
|
||
|
free(dir);
|
||
|
|
||
|
return 0;
|
||
|
}
|