diff options
Diffstat (limited to 'src/directory.h')
-rw-r--r-- | src/directory.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/directory.h b/src/directory.h index cd5c53dfb..8207bd3a2 100644 --- a/src/directory.h +++ b/src/directory.h @@ -108,6 +108,16 @@ directory_prune_empty(struct directory *directory); struct directory * directory_lookup_directory(struct directory *directory, const char *uri); +/** + * Looks up a song by its relative URI. + * + * @param directory the parent (or grandparent, ...) directory + * @param uri the relative URI + * @return the song, or NULL if none was found + */ +struct song * +directory_lookup_song(struct directory *directory, const char *uri); + void directory_sort(struct directory *directory); |