MLReleaseInteger8Array (C Function)
MLReleaseInteger8Array has been replaced by WSReleaseInteger8Array.
void MLReleaseInteger8Array( MLINK l , unsigned char * a , int * d , char ** h , int depth )
releases memory allocated by MLGetInteger8Array() to store the array a, its dimensions d, and the heads h.
Details

- The array a must have been allocated by a call to MLGetInteger8Array().
- MLReleaseInteger8Array() is declared in the MathLink header file mathlink.h.
Examples
Basic Examples (1)
#include "mathlink.h"
/* A function for retrieving an array of 8-bit integers from a link */
void f(MLINK l)
{
unsigned char *data;
int *dims;
char **heads;
int depth;
if(! MLGetInteger8Array(l, &data, &dims, &heads, &depth))
{ /* Unable to get the array of integers from the link */ }
/* ... */
MLReleaseInteger8Array(l, data, dims, heads, depth);
}