mirror of
https://github.com/vivier/EMILE.git
synced 2025-01-03 12:31:57 +00:00
24 lines
385 B
C
24 lines
385 B
C
|
/*
|
||
|
*
|
||
|
* (c) 2008 Laurent Vivier <Laurent@lvivier.info>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include "libext2.h"
|
||
|
#include "ext2_utils.h"
|
||
|
|
||
|
static struct ext2_dir_entry_2 entry;
|
||
|
|
||
|
struct ext2_dir_entry_2 *ext2_readdir(ext2_DIR *dir)
|
||
|
{
|
||
|
int ret;
|
||
|
|
||
|
ret = ext2_dir_entry(dir->volume, dir->inode, dir->index, &entry);
|
||
|
if (ret == -1)
|
||
|
return NULL;
|
||
|
dir->index = ret;
|
||
|
|
||
|
entry.name[entry.name_len] = 0;
|
||
|
return &entry;
|
||
|
}
|