OPENSSL_LH_delete

Delete the entry matching data from an LHASH.

Synopsis

Declared in <openssl/lhash.h>

void*
OPENSSL_LH_delete(
    OPENSSL_LHASH* lh,
    void const* data);

Return Value

The removed element pointer, or NULL if not found.

Parameters

NameDescription
lhHash table.
dataKey/element used for lookup (compared via the table's compare function).