MLReleaseInteger16Array (C Function)

MLReleaseInteger16Array has been replaced by WSReleaseInteger16Array.

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

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

Details

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

Examples

Basic Examples  (1)

#include "mathlink.h"

/* read a list of 16-bit integers from a link and then release the memory to MathLink for deallocation */

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

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

    /* ... */

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