Adapter that invokes a typed OPENSSL_LH_COMPFUNC on two void* elements.
Declared in <openssl/lhash.h>
typedef int(* OPENSSL_LH_COMPFUNCTHUNK)(void const*, void const*, OPENSSL_LH_COMPFUNC);
| Name | Description |
|---|---|
| a | First element pointer passed to the comparison function. |
| b | Second element pointer passed to the comparison function. |
| cfn | Underlying comparison function to invoke on a and b. |