WSReleaseUTF16Symbol (C 関数)

void WSReleaseUTF16Symbol(WSLINK link,const unsigned short *s,int len)

記号の名前に対応していてUTF-16でコード化された文字列s を保持するために,WSGetUTF16Symbol()で割り当てられたメモリを解放する.

詳細

  • WSReleaseUTF16Symbol()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

  (1)

#include "wstp.h"

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

void f(WSLINK lp)
{
    const unsigned short *symbol;
    int number_of_codes;
    int number_of_characters;

    if(! WSGetUTF16String(lp, &symbol, &number_of_codes, &number_of_characters))
        { /* unable to read the UTF-16 encoded symbol from lp */ }

    /* ... */

    WSReleaseUTF16Symbol(lp, symbol, number_of_codes);
}