WSReleaseUTF32LinkName (C 関数)

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

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

詳細

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

例題

  (1)

#include "wstp.h"

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

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

    name = WSUTF32LinkName(l, &length);

    /* We check for length <= 1 here because WSUTF32LinkName
    returns a string with a byte order mark */

    if(name == (const unsigned int *)0 || length <= 1)
    { /* Unable to get the name of the link */ }

    /* ... */

    WSReleaseUTF32LinkName(l, name, length);
}