mirror of
https://github.com/vivier/EMILE.git
synced 2024-10-31 20:05:01 +00:00
9bd9755dbb
Signed-off-by: Laurent Vivier <Laurent@Vivier.EU>
15 lines
269 B
C
15 lines
269 B
C
/*
|
|
*
|
|
* (c) 2005 Laurent Vivier <Laurent@Vivier.EU>
|
|
*
|
|
*/
|
|
|
|
#include "libiso9660.h"
|
|
|
|
int iso9660_is_directory(struct iso_directory_record * idr)
|
|
{
|
|
return ((idr->flags[0] & 2) != 0 &&
|
|
(idr->name_len[0] != 1 ||
|
|
(idr->name[0] != 0 && idr->name[0] != 1)));
|
|
}
|