Look up the entry matching data in an LHASH.
Synopsis
Declared in <openssl/lhash.h>
void*
OPENSSL_LH_retrieve(
OPENSSL_LHASH* lh,
void const* data);
Return Value
Matching element pointer, or NULL if not found.
Parameters
Name |
Description |
lh |
Hash table to search. |
data |
Key/element used for lookup (compared via the table's compare function). |
Created with MrDocs