Free
Free
Frees memory allocated by the function
ippMalloc
.Syntax
void ippFree(void*
ptr
);
Include Files
ippcore.h
Parameters
- ptr
- Pointer to a memory block to be freed.
Description
This function frees an aligned memory block previously allocated by the function
ippMalloc
.Use the
ippFree()
to free memory allocated by ippMalloc()
. Use free
to free memory allocated by malloc
or calloc
.