Veritable Lasagna
An Allocator & Data Structure Library for C.
|
#include "vl_numtypes.h"
Go to the source code of this file.
Typedefs | |
typedef vl_int_t(* | vl_compare_function) (const void *dataA, const void *dataB) |
typedef vl_int_t(* vl_compare_function) (const void *dataA, const void *dataB) |
The compare function typedef. Used for sorting.
In most cases, the following holds true for sorting in ascending order: Should return < 0 if dataA > dataB. Should return > 0 if dataA < dataB. Should return 0 if dataA == dataB.
dataA | pointer to first datum |
dataB | pointer to second datum |