MLReleaseInteger8Array (C 函数)
MLReleaseInteger8Array 已经被 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.
更多信息

- The array a must have been allocated by a call to MLGetInteger8Array().
- MLReleaseInteger8Array() is declared in the MathLink header file mathlink.h.
范例
基本范例 (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);
}