Handle streams separately in tree_add_track()
[cmus.git] / mergesort.h
blobf9a2c307606c5fbe1440ff029d91ea1700b03dba
1 #ifndef _MERGESORT_H
2 #define _MERGESORT_H
4 #include "list.h"
6 extern void list_mergesort(struct list_head *head,
7 int (*compare)(const struct list_head *, const struct list_head *));
9 #endif