File: mergesort.h

package info (click to toggle)
cmus 2.2.0-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,196 kB
  • ctags: 2,714
  • sloc: ansic: 24,078; sh: 1,024; makefile: 209; python: 26
file content (9 lines) | stat: -rw-r--r-- 191 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
#ifndef _MERGESORT_H
#define _MERGESORT_H

#include "list.h"

extern void list_mergesort(struct list_head *head,
	int (*compare)(const struct list_head *, const struct list_head *));

#endif