MLReleaseString (C 関数)
MLReleaseStringはWSReleaseStringに置き換えられた.
void MLReleaseString(MLINK link,const char *s)
文字列s を保持するために,MLGetString()で割り当てられたメモリを解放する.
例題
例 (1)
#include "mathlink.h"
/* read a C string from a link and then release that memory to MathLink for deallocation */
void f(MLINK lp)
{
const char *s;
if(! MLGetString(lp, &s))
{ /* unable to read the string from lp */ }
/* ... */
MLReleaseString(lp, s);
}