diff options
Diffstat (limited to 'dir-iterator.h')
-rw-r--r-- | dir-iterator.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dir-iterator.h b/dir-iterator.h index 479e1ec..6d43880 100644 --- a/dir-iterator.h +++ b/dir-iterator.h @@ -54,8 +54,11 @@ * and ITER_ERROR is returned immediately. In both cases, a meaningful * warning is emitted. Note: ENOENT errors are always ignored so that * the API users may remove files during iteration. + * + * - DIR_ITERATOR_SORTED: sort directory entries alphabetically. */ #define DIR_ITERATOR_PEDANTIC (1 << 0) +#define DIR_ITERATOR_SORTED (1 << 1) struct dir_iterator { /* The current path: */ |