WSPutByteString (C 函数)
int WSPutByteString(WSLINK link,const unsigned char *s,int n)
把一个从位置 s 开始的 n 个字符的字符串写入由 link 指定的 WSTP 连接.
更多信息
- 字符串中的所有字符必须使用从 Wolfram 语言的 ToCharacterCode 中获得的字符代码指定.
- 换行符必须使用它们的原始字符代码指定,而不是 ∖n.
- WSPutByteString() 只处理代码小于256的字符.
- 可以处理常用的 ASCII 以及 ISO Latin-1 字符.
- 若发生错误,则 WSPutByteString() 返回0;若函数成功,则返回非零值.
- 如果 WSPutByteString() 失败,则使用 WSError() 检索错误代码.
- WSTP 的标头文件 wstp.h 已对 WSPutByteString() 作出声明.
范例
基本范例 (1)
#include "wstp.h"
/* transfer a string from a source link to a destination link */
void f(WSLINK sourcelink, WSLINK destinationlink)
{
const unsigned char *string;
int length;
if(! WSGetByteString(sourcelink, &string, &length, 0))
{ /* unable to get the string from sourcelink */ }
if(! WSPutByteString(destinationlink, string, length))
{ /* unable to put the string to destination link */ }
}