MLReleaseInteger32Array (C Function)

MLReleaseInteger32Array has been replaced by WSReleaseInteger32Array.

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

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

Details

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

Examples

Basic Examples  (1)

#include "mathlink.h"

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

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

    if(! MLGetIntegerArray(lp, &data, &dimensions, &heads))
        { /* unable to read the integer array from lp */ }

    /* ... */

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