WSReleaseString (C 関数)
void WSReleaseString(WSLINK link,const char *s)
文字列s を保持するために,WSGetString()で割り当てられたメモリを解放する.
例題
例 (1)
#include "wstp.h"
/* read a C string from a link and then release that memory to WSTP for deallocation */
void f(WSLINK lp)
{
const char *s;
if(! WSGetString(lp, &s))
{ /* unable to read the string from lp */ }
/* ... */
WSReleaseString(lp, s);
}