WSTestUTF32String (C 関数)
int WSTestUTF32String(WSLINK l, const unsigned int *s, int n)
l から読み込まれる次の式が値 s を持つ文字列であり,長さ n のUTF-32でコード化された文字列であることを検証する.
詳細
- WSTestUTF32String()は,リンク上の現行のオブジェクトが文字列ではない場合,あるいは文字列の値が s にマッチしない場合には失敗する.
- WSTestUTF32String()は,エラーが起った場合には0を,関数が成功した場合には非零の値を返す.
- WSTestUTF32String()が失敗した場合には,WSError()を使ってエラーコードを得るとよい.
- WSTestUTF32String()は,関数が失敗した場合には,WSTestUTF32String()を呼び出す直前のリンク上の式に対するストリームポインタを再設定する.この操作は,プログラマがWSCreateMark(link); WSTestUTF32String(…); WSSeekToMark(…)を呼び出したかのように振舞う.
- UTF-32でコード化された文字列 s には,バイトオーダーマークを含まなければならない.
- UTF-32の文字列 s の長さ n には,バイトオーダーマークを含まなければならない.
- WSTestUTF32String()は,WSTPヘッダファイルwstp.hの中で宣言される.
例題
例 (1)
#include "wstp.h"
/* A function for testing the next expression on the link for a string */
void f(WSLINK l)
{
const unsigned int theString[9];
theString[0] = 0xFEFF;
theString[1] = '$'
theString[2] = 'V';
theString[3] = 'e';
theString[4] = 'r';
theString[5] = 's';
theString[6] = 'i';
theString[7] = 'o';
theString[8] = 'n';
if(! WSTestUTF32String(l, (const unsigned int *)theString,
9))
{ /* The next expression on the link is not $Version */ }
else
{ /* The next expression on the link is $Version */ }
}