WSGetReal32 (C 関数)
int WSGetReal32(WSLINK link,float *x)
link から単精度浮動小数点数を得て,それをfloatとしてx に保持する.
例題
例 (1)
#include "wstp.h"
/* read a single-precision floating-point number from a link */
void f(WSLINK lp)
{
float r;
if(! WSGetReal32(lp, &r))
{ /* unable to read the floating-point number from lp */ }
/* ... */
}