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
Add xterm-white.theme
[cmus.git]
/
mergesort.h
blob
e614f1565b91c32cf403cc1080de4a3bd5423a28
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