[#OPENSSL_sk_push] = OPENSSL_sk_push :mrdocs: Append `data` to the end of a generic OPENSSL_STACK. == Synopsis Declared in `<openssl/stack.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int OPENSSL_sk_push( xref:OPENSSL_STACK.adoc[OPENSSL_STACK]* st, void const* data); ---- == Return Value Number of elements after the push, or 0 on failure. == Parameters [cols="1,4"] |=== | Name| Description | *st* | Stack to modify. | *data* | Element pointer to store. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#