diff options
Diffstat (limited to 'src/songvec.h')
-rw-r--r-- | src/songvec.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/songvec.h b/src/songvec.h new file mode 100644 index 000000000..ada7c262d --- /dev/null +++ b/src/songvec.h @@ -0,0 +1,24 @@ +#ifndef SONGVEC_H +#define SONGVEC_H + +#include "song.h" +#include "os_compat.h" + +struct songvec { + Song **base; + size_t nr; +}; + +void songvec_sort(struct songvec *sv); + +Song *songvec_find(struct songvec *sv, const char *url); + +int songvec_delete(struct songvec *sv, Song *del); + +void songvec_add(struct songvec *sv, Song *add); + +void songvec_free(struct songvec *sv); + +void songvec_prune(struct songvec *sv); + +#endif /* SONGVEC_H */ |