aboutsummaryrefslogblamecommitdiffstats
path: root/src/songvec.h
blob: 47b5ea6c0289a99d273a01e9a738beb270c384dc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                        
                                                        


                                                
                                         
 
                      
#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, const Song *del);

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

void songvec_destroy(struct songvec *sv);

#endif /* SONGVEC_H */