![]() |
|
|||
0001 /* SPDX-License-Identifier: GPL-2.0 */ 0002 #ifndef _LINUX_SORT_H 0003 #define _LINUX_SORT_H 0004 0005 #include <linux/types.h> 0006 0007 void sort_r(void *base, size_t num, size_t size, 0008 cmp_r_func_t cmp_func, 0009 swap_r_func_t swap_func, 0010 const void *priv); 0011 0012 void sort(void *base, size_t num, size_t size, 0013 cmp_func_t cmp_func, 0014 swap_func_t swap_func); 0015 0016 #endif
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.1.0 LXR engine. The LXR team |
![]() ![]() |