MLReleaseUTF32String (C 函数)

MLReleaseUTF32String 已经被 WSReleaseUTF32String 所取代.

void MLReleaseUTF32String(MLINK link,const unsigned int *s,int len)

释放由 MLGetUTF32String() 分配的存储 UTF-32 编码的字符串 s 的内存.

更多信息

  • MLReleaseUTF32String() 在 MathLink 标头文件 mathlink.h 中被声明.

范例

基本范例  (1)

#include "mathlink.h"

/* read a UTF-32 encoded string from a link and then release the memory to MathLink for deallocation */

void f(MLINK lp)
{
    const unsigned int *string;
    int length;

    if(! MLGetUTF32String(lp, &string, &length))
        { /* unable to read the UTF-32 encoded string from lp */ }

    /* ... */

    MLReleaseUTF32String(lp, string, length);
}