15 lines
387 B
C
15 lines
387 B
C
#ifndef INCLUDED_C_SORTCOMPARE_H
|
|||
|
|
#define INCLUDED_C_SORTCOMPARE_H
|
||
|
|
|
||
|
|
#ifndef INCLUDED_C_TYPES_H
|
||
|
|
#include <c_Types.h>
|
||
|
|
#endif /*INCLUDED_C_TYPES_H*/
|
||
|
|
|
||
|
|
|
||
|
|
/* ------------------------------------------------------------------------------------------------------------------ */
|
||
|
|
/* */
|
||
|
|
|
||
|
|
typedef int (*c_SortCompare_t)(const void* a, const void* b, void* args);
|
||
|
|
|
||
|
|
#endif /*INCLUDED_C_SORTCOMPARE_H*/
|