WSReleaseInteger8Array (C 関数)
void WSReleaseInteger8Array( WSLINK l , unsigned char * a , int * d , char ** h , int depth )
配列 a,その次元 d,頭部 h を保存するために,WSGetInteger8Array()で割り当てられたメモリを解放する.
詳細
- 配列 a は,WSGetInteger8Array()への呼出しによって割り当てられていなければならない.
- WSReleaseInteger8Array()は,WSTPヘッダファイルwstp.hの中で宣言される.
例題
例 (1)
#include "wstp.h"
/* A function for retrieving an array of 8-bit integers from a link */
void f(WSLINK l)
{
unsigned char *data;
int *dims;
char **heads;
int depth;
if(! WSGetInteger8Array(l, &data, &dims, &heads, &depth))
{ /* Unable to get the array of integers from the link */ }
/* ... */
WSReleaseInteger8Array(l, data, dims, heads, depth);
}