Add functions to iterate over directory children.

This commit is contained in:
Vreixo Formoso
2007-12-01 02:22:00 +01:00
parent e068fd1cf6
commit 051538b5c2
3 changed files with 128 additions and 0 deletions

View File

@ -107,4 +107,14 @@ struct Iso_Symlink
char *dest;
};
/**
* An iterator for directory children.
*/
struct Iso_Dir_Iter
{
const IsoDir *dir;
IsoNode *pos;
};
#endif /*LIBISO_NODE_H_*/