WSReleaseInteger16List (C 関数)

void WSReleaseInteger16List(WSLINK link,short *a,int n)

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

詳細

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

例題

  (1)

#include "wstp.h"

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

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

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

    /* ... */

    WSReleaseInteger16List(lp, data, length);
}