Insert data before index where (appending if where is out of range).
Declared in <openssl/stack.h>
int
OPENSSL_sk_insert(
OPENSSL_STACK* sk,
void const* data,
int where);
New number of elements, or 0 on failure.
| Name | Description |
|---|---|
| sk | Stack to modify. |
| data | Element pointer to store (not copied). |
| where | Insertion index. |