#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 */ } /* ... */ MLDisownIntegerArray(lp, data, dimensions, heads, depth);}