WSReleaseUTF8LinkName (C 関数)

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

WSUTF8LinkName()によって割り当てられたメモリを解放して,長さ v の配列である,UTF-8でコード化されたリンク名 n を保存する.

詳細

  • リンク名 n を保存するために使われたメモリは,WSUTF8LinkName()への呼出しによって割り当てられたものでなければならない.
  • WSReleaseUTF8LinkName()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

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