mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 08:25:20 +09:00
dirent-util: introduce readdir_ensure_type()
This commit is contained in:
@@ -59,8 +59,20 @@ bool dirent_is_file_with_suffix(const struct dirent *de, const char *suffix) {
|
||||
return endswith(de->d_name, suffix);
|
||||
}
|
||||
|
||||
struct dirent* readdir_no_dot(DIR *dirp) {
|
||||
struct dirent* d;
|
||||
struct dirent *readdir_ensure_type(DIR *d) {
|
||||
struct dirent *de;
|
||||
|
||||
assert(d);
|
||||
|
||||
errno = 0;
|
||||
de = readdir(d);
|
||||
if (de)
|
||||
(void) dirent_ensure_type(d, de);
|
||||
return de;
|
||||
}
|
||||
|
||||
struct dirent *readdir_no_dot(DIR *dirp) {
|
||||
struct dirent *d;
|
||||
|
||||
for (;;) {
|
||||
d = readdir(dirp);
|
||||
|
||||
@@ -13,7 +13,8 @@ int dirent_ensure_type(DIR *d, struct dirent *de);
|
||||
bool dirent_is_file(const struct dirent *de) _pure_;
|
||||
bool dirent_is_file_with_suffix(const struct dirent *de, const char *suffix) _pure_;
|
||||
|
||||
struct dirent* readdir_no_dot(DIR *dirp);
|
||||
struct dirent *readdir_ensure_type(DIR *d);
|
||||
struct dirent *readdir_no_dot(DIR *dirp);
|
||||
|
||||
#define FOREACH_DIRENT(de, d, on_error) \
|
||||
for (errno = 0, de = readdir(d);; errno = 0, de = readdir(d)) \
|
||||
|
||||
Reference in New Issue
Block a user