WSReleaseInteger32Array (C 関数)
void WSReleaseInteger32Array(WSLINK link,int *a,int *dims,char **heads,int d)
配列 a,その次元 dims,そして頭部 heads を保持するために,WSGetInteger32Array()で割り当てられたメモリを解放する.
例題
例 (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(WSINK 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);
}