diff options
Diffstat (limited to '')
-rw-r--r-- | src/directory.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/directory.h b/src/directory.h index a7a632ebc..8cb5ed5f8 100644 --- a/src/directory.h +++ b/src/directory.h @@ -68,6 +68,12 @@ directory_get_path(const struct directory *directory) return directory->path; } +/** + * Returns the base name of the directory. + */ +const char * +directory_get_name(const struct directory *directory); + static inline struct directory * directory_get_child(const struct directory *directory, const char *name) { |