WSReleaseReal128List (C Function)

void WSReleaseReal128List(WSLINK link,wstpextended_double *a,int n)

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

Details

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

Examples

Basic Examples  (1)

#include "wstp.h"

/* read a list of extended-precision floating-point numbers from a link and then release the memory to WSTP for deallocation */

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

    if(! WSGetReal128List(lp, &data, &length))
     { /* unable to read the list of floating-point numbers from lp */ }

    /* ... */

    WSReleaseReal128List(lp, data, length);
}