MLPutByteSymbol (C 関数)
MLPutByteSymbolはWSPutByteSymbolに置き換えられた.
int MLPutByteSymbol(MLINK link,const unsigned char *s,long l)
長さl の文字列s によって名前が与えられる記号をlink で指定されたMathLink接続に置く.
詳細
- MLPutByteSymbol()は8ビットで表現できる全範囲の文字を転送することができる.
- 文字列が空バイトで終る必要はない.
- MLPutByteSymbol()はエラーがあると0を返し,関数が成功すると0以外の値を返す.
- MLError()を使うと,MLPutByteSymbol()が不成功の場合にエラーコードを引き出すことができる.
- MLPutByteSymbol()は,MathLinkヘッダファイルmathlink.hの中で宣言される.
例題
例 (1)
#include "mathlink.h"
/* send the expression Integrate[Cos[y],y] to a link */
void f(MLINK lp)
{
if(! MLPutFunction(lp, "Integrate", 2))
{ /* unable to put the function to lp */ }
if(! MLPutFunction(lp, "Cos", 1))
{ /* unable to put the function to lp */ }
if(! MLPutByteSymbol(lp, "y", 1))
{ /* unable to put the symbol to lp */ }
if(! MLPutByteSymbol(lp, "y", 1))
{ /* unable to put the symbol to lp */ }
if(! MLEndPacket(lp))
{ /* unable to send the end-of-packet indicator to lp */ }
if(! MLFlush(lp))
{ /* unable to flush any outgoing data buffered in lp */ }
}