aboutsummaryrefslogblamecommitdiffstats
path: root/src/songvec.h
blob: ada7c262da756f940af5f5446e0ac48cf5944ab8 (plain) (tree)























                                                        
#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 */