WSReleaseByteString (C 関数)

void WSReleaseByteString(WSLINK link,const unsigned char *s,int n)

文字コードs の配列を保持するために,WSGetByteString ()で割り当てられたメモリを解放する.

詳細

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

例題

  (1)

#include "wstp.h"

/* read a string composed of character code values 0-255 from the link and release that memory to WSTP for deallocation */

void f(WSLINK lp)
{
    const unsigned char *string;
    int length;

    if(! WSGetByteString(lp, &string, &length, 0))
        { /* unable to read byte string from lp */ }

    /* ... */

    WSReleaseByteString(lp, string, length);
}