MLReleaseInteger64Array (C Function)

MLReleaseInteger64Array has been replaced by WSReleaseInteger64Array.

void MLReleaseInteger64Array(MLINK link,mlint64 *a,int *dims,char **heads,int d)

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

Details

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

Examples

Basic Examples  (1)

#include "mathlink.h"

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

void f(MLINK lp)
{
    mlint64 *data;
    int *dimensions;
    char **heads;
    int depth;


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

    /* ... */

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