MLReleaseInteger16List (C Function)

MLReleaseInteger16List has been replaced by WSReleaseInteger16List.

void MLReleaseInteger16List(MLINK link,short *a,int n)

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

Details

  • MLReleaseInteger16List() 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 length;

    if(! MLGetInteger16List(lp, &data, &length))
        { /* unable to read the list of integers from lp */ }

    /* ... */

    MLReleaseInteger16List(lp, data, length);
}