WSReleaseInteger16Array (C 関数)

void WSReleaseInteger16Array(WSLINK link,short *a,int *dims,char **heads,int d)

配列a,その次元dims,そして頭部heads を保持するために,WSGetInteger16Array()で割り当てられたメモリを解放する.

詳細

  • WSReleaseInteger16Array()は,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 *dimensions;
    char **heads;
    int depth;

    if(! WSGetInteger16Array(lp, &data, &dimensions, &heads, &depth))
        { /* unable to read the array of integers from lp */ }

    /* ... */

    WSReleaseInteger16Array(lp, data, dimensions, heads, depth);
}