MLReleaseReal128List (C Function)

MLReleaseReal128List has been replaced by WSReleaseReal128List.

void MLReleaseReal128List(MLINK link,mlextended_double **a,int *n)

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

Details

  • MLReleaseReal128List() is declared in the MathLink header file mathlink.h.

Examples

Basic Examples  (1)

#include "mathlink.h"

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

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

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

    /* ... */

    MLReleaseReal128List(lp, data, length);
}