MLReleaseString (C 函数)

MLReleaseString 已经被 WSReleaseString 所取代.

void MLReleaseString(MLINK link,const char *s)

释放由 MLGetString() 分配的存储字符字符串 s 的内存.

更多信息

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