aboutsummaryrefslogtreecommitdiffstats
path: root/src/songvec.h
blob: 0373ed3e703a36c10cba662daf86de28b40b2011 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#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(const struct songvec *sv, const char *url);

int songvec_delete(struct songvec *sv, const Song *del);

void songvec_add(struct songvec *sv, Song *add);

void songvec_destroy(struct songvec *sv);

int
songvec_for_each(const struct songvec *sv,
		 int (*fn)(Song *, void *), void *arg);

#endif /* SONGVEC_H */