aboutsummaryrefslogtreecommitdiffstats
path: root/src/songvec.h
blob: 10a896052f717b80b04efdde1f74f25d51952a7f (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
#ifndef SONGVEC_H
#define SONGVEC_H

#include "song.h"
#include "os_compat.h"

struct songvec {
	struct mpd_song **base;
	size_t nr;
};

struct mpd_song *songvec_find(const struct songvec *sv, const char *url);

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

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

void songvec_destroy(struct songvec *sv);

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

#endif /* SONGVEC_H */