[#CRYPTO_realloc_fn] = CRYPTO_realloc_fn :mrdocs: Reallocator callback type used by CRYPTO_set_mem_functions(). == Synopsis Declared in `<openssl/crypto.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- typedef void*(* CRYPTO_realloc_fn)(void*, size_t, char const*, int); ---- == Return Value Resized memory, or NULL on failure. == Parameters [cols="1,4"] |=== | Name| Description | *addr* | Existing allocation to resize, or NULL to allocate. | *num* | Desired new size in bytes. | *file* | Source file recorded with the (re)allocation. | *line* | Source line recorded with the (re)allocation. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#