https://github.com/torvalds/linux
Raw File
Tip revision: 64aa90f26c06e1cb2aacfb98a7d0eccfbd6c1a91 authored by Linus Torvalds on 27 July 2014, 19:41:55 UTC
Linux 3.16-rc7
Tip revision: 64aa90f
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