WSPutReal32 (C 関数)
int WSPutReal32(WSLINK link,double x)
単精度浮動小数点数x を,C言語のfloat型に対応する精度で,link で指定されたWSTP接続に置く.
例題
例 (1)
#include "wstp.h"
/* send the number 3.4 to a link */
void f(WSLINK lp)
{
float numb = 3.4;
if(! WSPutReal32(lp, numb))
{ /* unable to send 3.4 to lp */ }
}