WSReleaseInteger32List (C 関数)

void WSReleaseInteger32List(WSLINK link,int *a,int n)

長さn の配列a を保持するために,WSGetInteger32List()で割り当てられたメモリを解放する.

詳細

  • WSReleaseInteger32List()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

  (1)

#include "wstp.h"

/* read a list of 32-bit integers from a link and then release the memory to WSTP for deallocation */

void f(WSLINK lp)
{
    int *data;
    int length;

    if(! WSGetInteger32List(lp, &data, &length))
        { /* unable to read the list of integers from lp */ }

    /* ... */

    WSReleaseInteger32List(lp, data, length);
}