WSReleaseInteger8List (C 関数)
void WSReleaseInteger8List( WSLINK l , unsigned char * a , int n )
長さ n の配列 a を保存するために,WSGetInteger8List()で割り当てられたメモリを解放する.
詳細
- 配列 a は,WSGetInteger8List()への呼出しによって作成されていなければならない.
- WSReleaseInteger8List()は,WSTPヘッダファイルwstp.hの中で宣言される.
例題
例 (1)
#include "wstp.h"
/* A function to read a list of 8-bit integers from a link */
void f(WSLINK l)
{
unsigned char *a;
int length;
if(! WSGetInteger8List(l, &a, &length))
{ /* Unable to read the list of integers from the link */ }
/* ... */
WSReleaseInteger8List(l, a, length);
}