WSReleaseInteger32Array (C Function)
void WSReleaseInteger32Array(WSLINK link,int *a,int *dims,char **heads,int d)
disowns memory allocated by WSGetInteger32Array() to store the array a, its dimensions dims and the heads heads.
Examples
Basic Examples (1)
#include "wstp.h"
/* read an array of 32-bit integers from a link and then release the memory to WSTP for deallocation */
void f(WSLINK lp)
{
int *data;
int *dimensions;
char **heads;
int depth;
if(! WSGetIntegerArray(lp, &data, &dimensions, &heads))
{ /* unable to read the integer array from lp */ }
/* ... */
WSReleaseInteger32Array(lp, data, dimensions, heads, depth);
}