Delete the entry matching data from an LHASH.
Declared in <openssl/lhash.h>
void*
OPENSSL_LH_delete(
OPENSSL_LHASH* lh,
void const* data);
The removed element pointer, or NULL if not found.
| Name | Description |
|---|---|
| lh | Hash table. |
| data | Key/element used for lookup (compared via the table's compare function). |