mirror of
https://github.com/vivier/EMILE.git
synced 2025-02-01 04:30:50 +00:00
33 lines
664 B
C
33 lines
664 B
C
/*
|
|
*
|
|
* (c) 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
*
|
|
*/
|
|
|
|
#include "libiso9660.h"
|
|
|
|
extern iso9660_read_t __iso9660_device_read;
|
|
|
|
struct iso_directory_record *iso9660_readdir(iso9660_DIR *dir)
|
|
{
|
|
struct iso_directory_record *idr;
|
|
|
|
if (dir->index > 2048 - offsetof(struct iso_directory_record, name[0]))
|
|
{
|
|
if (dir->len <= 0)
|
|
return NULL;
|
|
__iso9660_device_read(dir->extent, dir->buffer, sizeof (dir->buffer));
|
|
dir->len -= sizeof (dir->buffer);
|
|
dir->extent++;
|
|
dir->index = 0;
|
|
}
|
|
|
|
idr = (struct iso_directory_record *) &dir->buffer[dir->index];
|
|
if (idr->length[0] == 0)
|
|
return NULL;
|
|
|
|
dir->index += dir->buffer[dir->index];
|
|
|
|
return idr;
|
|
}
|