aboutsummaryrefslogblamecommitdiffstats
path: root/src/songvec.h
blob: b823724e7e3d3d3bc7ccf879033b9c2e41e24df7 (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_destroy(struct songvec *sv);

int songvec_write(struct songvec *sv, int fd, int extra);

#endif /* SONGVEC_H */