#include "mathlink.h"/* read a list of single-precision floating-point numbers from a link and then release the memory to MathLink for deallocation */void f(MLINK lp){ float *data; int length; if(! MLGetReal32List(lp, &data, &length)) { /* unable to read the list of floating-point numbers from lp */ } /* ... */ MLReleaseReal32List(lp, data, length);}