Linux Audio

Check our new training course

In-person Linux kernel drivers training

Jun 16-20, 2025
Register
Loading...
v5.9
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef _LINUX_LIST_SORT_H
 3#define _LINUX_LIST_SORT_H
 4
 5#include <linux/types.h>
 6
 7struct list_head;
 8
 
 
 
 9__attribute__((nonnull(2,3)))
10void list_sort(void *priv, struct list_head *head,
11	       int (*cmp)(void *priv, struct list_head *a,
12			  struct list_head *b));
13#endif
v6.9.4
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef _LINUX_LIST_SORT_H
 3#define _LINUX_LIST_SORT_H
 4
 5#include <linux/types.h>
 6
 7struct list_head;
 8
 9typedef int __attribute__((nonnull(2,3))) (*list_cmp_func_t)(void *,
10		const struct list_head *, const struct list_head *);
11
12__attribute__((nonnull(2,3)))
13void list_sort(void *priv, struct list_head *head, list_cmp_func_t cmp);
 
 
14#endif