WSReleaseUTF8Symbol (C 函数)

void WSReleaseUTF8Symbol(WSLINK link,const unsigned char *s,int len)

释放由 WSGetUTF8Symbol() 分配的存储对应于一个符号名称的 UTF-8 编码字符字符串 s 的内存.

更多信息

  • WSTP 的标头文件 wstp.h 已对 WSReleaseUTF8Symbol() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* read a UTF-8 encoded symbol from a link and then release the memory to WSTP for deallocation */

void f(WSLINK lp)
{
    const unsigned char *symbol;
    int number_of_bytes;
    int number_of_characters;

    if(! WSGetUTF8Symbol(lp, &symbol, &number_of_bytes, &number_of_characters))
        { /* unable to read the UTF-8 encoded symbol from lp */ }

    /* ... */

    WSReleaseUTF8Symbol(lp, symbol, number_of_bytes);
}