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