WSReleaseInteger64Array (C Function)

void WSReleaseInteger64Array(WSLINK link,wstpint64 *a,int *dims,char **heads,int d)

disowns memory allocated by WSGetInteger64Array() to store the array a, its dimensions dims and the heads heads.

Details

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

Examples

Basic Examples  (1)

#include "wstp.h"

/* read an array of 64-bit integers from a link and then release the memory to WSTP for deallocation */

void f(WSLINK lp)
{
    wstpint64 *data;
    int *dimensions;
    char **heads;
    int depth;


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

    /* ... */

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