MLPutUTF8String (C 函数)

MLPutUTF8String 已经被 WSPutUTF8String 所取代.

int MLPutUTF8String(MLINK link,const unsigned char *s,int len)

把长度为 len 的 UTF-8 字符串 s 写入由 link 指定的 MathLink 连接.

更多信息

  • MLPutUTF8String() 自动决定字符串 s 的字符数.
  • MLPutUTF8String() 在错误事件中返回0,如果函数成功则返回非零值.
  • 如果 MLPutUTF8String() 失败,则使用 MLError() 检索错误代码.
  • MLPutUTF8String() 在 MathLink 标头文件 mathlink.h 中被声明.

范例

基本范例  (1)

#include "mathlink.h"

/* send an Integrate[] expression to a link */

void f(MLINK lp)
{
    unsigned char *expr = "Integrate[1/Sin[x],x]";

    if(! MLPutFunction(lp, "EvaluatePacket", 1))
        { /* unable to send the function to lp */ }

    if(! MLPutFunction(lp, "ToExpression", 1))
        { /* unable to send the function to lp */ }

    if(! MLPutUTF8String(lp, (const unsigned char *)expr, 21))
        { /* unable to send the expression to lp */ }

    if(! MLEndPacket(lp))
        { /* unable to send the end-of-packet indicator to lp */ }

    if(! MLFlush(lp))
        { /* unable to flush any buffered outgoing data to lp */ }
}