#include "mathlink.h"/* read a extended-precision floating-point number from a link */void f(MLINK lp){ mlextended_double r; if(! MLGetReal128(lp, &r)) { /* unable to read the floating-point number from lp */ } /* ... */}