https://github.com/torvalds/linux
Raw File
Tip revision: 694d0d0bb2030d2e36df73e2d23d5770511dbc8d authored by Linus Torvalds on 15 August 2016, 02:11:36 UTC
Linux 4.8-rc2
Tip revision: 694d0d0
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