MLReleaseString (C 関数)

MLReleaseStringWSReleaseStringに置き換えられた.

void MLReleaseString(MLINK link,const char *s)

文字列s を保持するために,MLGetString()で割り当てられたメモリを解放する.

詳細

  • MLReleaseString()は,MathLinkヘッダファイルmathlink.hの中で宣言される.

例題

  (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);
}