2005-11-12 19:12:13 +00:00
|
|
|
/*
|
|
|
|
*
|
2006-09-15 14:55:39 +00:00
|
|
|
* (c) 2005 Laurent Vivier <Laurent@lvivier.info>
|
2005-11-12 19:12:13 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "libiso9660.h"
|
|
|
|
|
|
|
|
int iso9660_closedir(iso9660_DIR *dir)
|
|
|
|
{
|
|
|
|
if (dir == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
free(dir);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|