[#OPENSSL_LH_new] = OPENSSL_LH_new :mrdocs: Allocate a new LHASH table using hash function `h` and compare function `c.` == Synopsis Declared in `<openssl/lhash.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:OPENSSL_LHASH.adoc[OPENSSL_LHASH]* OPENSSL_LH_new( xref:OPENSSL_LH_HASHFUNC.adoc[OPENSSL_LH_HASHFUNC] h, xref:OPENSSL_LH_COMPFUNC.adoc[OPENSSL_LH_COMPFUNC] c); ---- == Return Value Newly allocated OPENSSL_LHASH, or NULL on failure. == Parameters [cols="1,4"] |=== | Name| Description | *h* | Hash callback for elements stored in the table. | *c* | Comparison callback returning 0 for equal elements. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#