[#OPENSSL_LH_delete] = OPENSSL_LH_delete :mrdocs: Delete the entry matching `data` from an LHASH. == Synopsis Declared in `<openssl/lhash.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void* OPENSSL_LH_delete( xref:OPENSSL_LHASH.adoc[OPENSSL_LHASH]* lh, void const* data); ---- == Return Value The removed element pointer, or NULL if not found. == Parameters [cols="1,4"] |=== | Name| Description | *lh* | Hash table. | *data* | Key/element used for lookup (compared via the table's compare function). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#