Add functions to iterate over directory children.
This commit is contained in:
10
src/node.h
10
src/node.h
@ -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_*/
|
||||
|
Reference in New Issue
Block a user