MLPutByteString (C 函数)

MLPutByteString 已经被 WSPutByteString 所取代.

int MLPutByteString(MLINK link,const unsigned char *s,int n)

把一个从位置 s 开始的 n 个字符的字符串写入由 link 指定的 MathLink 连接.

更多信息

  • 字符串中的所有字符必须使用从 Mathematica 的 ToCharacterCode 中获得的字符代码指定.
  • 换行符必须使用它们的原始字符代码指定,而不是 n.
  • MLPutByteString() 只处理代码小于256的字符.
  • 可以处理常用的 ASCII 以及 ISO Latin-1 字符.
  • MLPutByteString() 在错误事件中返回0,如果函数成功则返回非零值.
  • 如果 MLPutByteString() 失败,则使用 MLError() 检索错误代码.
  • MLPutByteString() 在 MathLink 标头文件 mathlink.h 中被声明.

范例

基本范例  (1)

#include "mathlink.h"

/* transfer a string from a source link to a destination link */

void f(MLINK sourcelink, MLINK destinationlink)
{
    const unsigned char *string;
    int length;

    if(! MLGetByteString(sourcelink, &string, &length, 0))
        { /* unable to get the string from sourcelink */ }

    if(! MLPutByteString(destinationlink, string, length))
        { /* unable to put the string to destination link */ }
}