WSReleaseUTF8LinkName (C 函数)

void WSReleaseUTF8LinkName(WSLINK l, const unsigned char *n, int v)

释放由 WSUTF8LinkName() 释放的内存,以储存 UTF-8 编码链接名称 n,一个长度为 v 的数组.

更多信息

  • 被分配用来储存链接名称 n 的内存肯定已在调用 WSUTF8LinkName() 时就被分配.
  • WSTP 的标头文件 wstp.h 已对 WSReleaseUTF8LinkName() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* A function for reading the name of a link */

void f(WSLINK l)
{
    const unsigned char *name;
    int length;

    name = WSUTF8LinkName(l, &length);
    if(name == (const unsigned char *)0 || length == 0)
    { /* Unable to get the name of the link */ }

    /* ... */

    WSReleaseUTF8LinkName(l, name, length);
}