#include "mathlink.h"/* read a UCS-2 encoding string from a link and then release the memory to MathLink for deallocation */void f(MLINK lp){ unsigned short *string; int length; if(! MLGetUCS2String(lp, &string, &length)) { /* unable to read the UCS-2 string */ } /* ... */ MLReleaseUCS2String(lp, string, length);}