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