= nng_free(3) // // Copyright 2018 Staysail Systems, Inc. // Copyright 2018 Capitar IT Group BV // // This document is supplied under the terms of the MIT License, a // copy of which should be located in the distribution where this // file was obtained (LICENSE.txt). A copy of the license may also be // found online at https://opensource.org/licenses/MIT. // == NAME nng_free - free memory == SYNOPSIS [source, c] ---- #include void nng_free(void *ptr, size_t size); ---- == DESCRIPTION The `nng_free()` function deallocates a memory region of size _size_, that was previously allocated by <> or <> with the `NNG_FLAG_ALLOC` flag. WARNING: It is very important that _size_ match the allocation size used to allocate the memory. WARNING: Do not attempt to use this function to deallocate memory obtained by a call to the system `malloc()` or `calloc()` functions, or the {cpp} `new` operator. Doing so may result in unpredictable behavior, including corruption of application memory. == RETURN VALUES None. == ERRORS None. == SEE ALSO <>, <>, <>