WSReleaseInteger16List (C Function)

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

disowns memory allocated by WSGetInteger16List() to store the array a of length n.

Details

  • WSReleaseInteger16List() is declared in the WSTP header file wstp.h.

Examples

Basic Examples  (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);
}