WSReleaseUCS2Symbol (C Function)

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

disowns memory allocated by WSGetUCS2Symbol() to store the UCS-2 Unicode string s with length len corresponding to the name of a symbol.

Details

  • WSReleaseUCS2Symbol() is declared in the WSTP header file wstp.h.

Examples

Basic Examples  (1)

#include "wstp.h"

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

void f(WSLINK lp)
{
    unsigned short *symbol;
    int length;

    if(! WSGetUCS2Symbol(lp, &symbol, &length))
        { /* unable to read the UCS-2 symbol */ }

    /* ... */

    WSReleaseUCS2Symbol(lp, symbol, length);
}