WSPutRealNumberAsUTF8String (C 関数)

int WSPutRealNumberAsUTF8String(WSLINK l, const unsigned char *s, int n)

長さ n のUTF-8の文字列 s としてコード化された浮動小数点数を,l が指定するWSTP接続に送信する.

詳細

  • s"3.14159"の形式で送信する.
  • WSPutRealNumberAsUTF8String()は,エラーの場合には0を,関数が成功した場合には非零の値を返す.
  • WSPutRealNumberAsUTF8String()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

  (1)

#include "wstp.h"

/* A function to put the expression Sqrt[2.75] to a link */

void f(WSLINK l)
{
    unsigned char *theNumber[4];

    theNumber[0] = '2';
    theNumber[1] = '.';
    theNumber[2] = '7';
    theNumber[3] = '5';

    if(! WSPutFunction(l, "Sqrt", 1))
    { /* Unable to put Sqrt[] to the link */ }

    if(! WSPutRealNumberAsUTF8String(l, theNumber, 4))
    { /* Unable to put the number to the link */}

    if(! WSEndPacket(l))
    { /* Unable to put the end-of-packet sequence to l */ }

    if(! WSFlush(l))
    { /* Unable to flush any output buffered in l */ }
}