MLReleaseUTF8String (C 関数)

MLReleaseUTF8StringWSReleaseUTF8Stringに置き換えられた.

void MLReleaseUTF8String(MLINK link,const unsigned char *s,int len)

UTF-8でコード化された文字列 s を保持するために,MLGetUTF8String()で割り当てられたメモリを解放する.

詳細

  • MLReleaseUTF8String()は,MathLinkヘッダファイルmathlink.hの中で宣言される.

例題

  (1)

#include "mathlink.h"

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

void f(MLINK lp)
{
    const unsigned char *string;
    int number_of_bytes;
    int number_of_characters

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

    /* ... */

    MLReleaseUTF8String(lp, string, number_of_bytes);
}