https://github.com/torvalds/linux
Raw File
Tip revision: 31880c37c11e28cb81c70757e38392b42e695dc6 authored by Linus Torvalds on 08 April 2013, 03:49:54 UTC
Linux 3.9-rc6
Tip revision: 31880c3
list_sort.h
#ifndef _LINUX_LIST_SORT_H
#define _LINUX_LIST_SORT_H

#include <linux/types.h>

struct list_head;

void list_sort(void *priv, struct list_head *head,
	       int (*cmp)(void *priv, struct list_head *a,
			  struct list_head *b));
#endif
back to top