list_sort.h 238 B

1234567891011
  1. #ifndef _LINUX_LIST_SORT_H
  2. #define _LINUX_LIST_SORT_H
  3. #include <linux/types.h>
  4. struct list_head;
  5. void list_sort(void *priv, struct list_head *head,
  6. int (*cmp)(void *priv, struct list_head *a,
  7. struct list_head *b));
  8. #endif