WSReleaseInteger64Array (C 関数)
void WSReleaseInteger64Array(WSLINK link,wstpint64 *a,int *dims,char **heads,int d)
配列a,その次元dims,そして頭部heads を保持するために,WSGetInteger64Array()で割り当てられたメモリを解放する.
例題
例 (1)
#include "wstp.h"
/* read an array of 64-bit integers from a link and then release the memory to WSTP for deallocation */
void f(WSLINK lp)
{
wstpint64 *data;
int *dimensions;
char **heads;
int depth;
if(! WSGetInteger64Array(lp, &data, &dimensions, &heads, &depth))
{ /* unable to read the array of integers from lp */ }
/* ... */
WSReleaseInteger64Array(lp, data, dimensions, heads, depth);
}