repo.or.cz
/
cmus.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Convert album_artist tag to albumartist
[cmus.git]
/
mergesort.h
blob
f9a2c307606c5fbe1440ff029d91ea1700b03dba
1
#ifndef _MERGESORT_H
2
#define _MERGESORT_H
3
4
#include
"list.h"
5
6
extern
void
list_mergesort
(
struct
list_head
*
head
,
7
int
(*
compare
)(
const struct
list_head
*,
const struct
list_head
*));
8
9
#endif