list_cmp

Compare two lists using the comparison function fp. The comparison function is the same as used for qsort().

extern (C++) nothrow @nogc
int
list_cmp
(
list_t list1
,
list_t list2
,
int function(
void*
,
void*
)
fp
)

Return Value

Type: int

If they compare equal, return 0 else value returned by fp.

Meta