WSPutSize (C 関数)
int WSPutSize(WSLINK link,int len)
link 上に置かれるテキストデータの長さをバイトで指定する.
例題
例 (1)
#include "wstp.h"
/* send the string "Hello World!" to a link */
void f(WSLINK lp)
{
if(! WSPutNext(lp, WSTKSTR))
{ /* unable to put the data type to lp */ }
if(! WSPutSize(lp, strlen("Hello World!"))
{ /* unable to put the string size to lp */ }
if(! MPutData(lp, "Hello World!", strlen("Hello World!")))
{ /* Unable to put the string contents to lp */ }
}