[#OPENSSL_sk_delete] = OPENSSL_sk_delete :mrdocs: Remove and return the element at index `loc` from a stack. == Synopsis Declared in `<openssl/stack.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void* OPENSSL_sk_delete( xref:OPENSSL_STACK.adoc[OPENSSL_STACK]* st, int loc); ---- == Return Value Removed element pointer, or NULL if `loc` is out of range. == Parameters [cols="1,4"] |=== | Name| Description | *st* | Stack to modify. | *loc* | Zero‐based index of the element to remove. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#