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

Name

Description

lh

Hash table.

data

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

Created with MrDocs