-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
91 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// | ||
// Created by grider on 22-8-22. | ||
// | ||
|
||
#ifndef DUC_DIR_H | ||
#define DUC_DIR_H | ||
|
||
struct duc_dir { | ||
struct duc *duc; | ||
struct duc_devino devino; | ||
struct duc_devino devino_parent; | ||
time_t mtime; | ||
char *path; | ||
struct duc_dirent *ent_list; | ||
struct duc_size size; | ||
size_t ent_cur; | ||
size_t ent_count; | ||
size_t ent_pool; | ||
duc_size_type size_type; | ||
duc_sort sort; | ||
}; | ||
|
||
#endif //DUC_DIR_H |