WSTestHead (C 函数)

int WSTestHead(WSLINK link,const char *head,int *n)

检验从 link 中读取的下一个对象是否是一个具有标头 head 的表达式,并把表达式的自变量数存在 n 中.

更多信息

  • 若链接中的当前对象不是一个以符号作为标头的函数,或如果符号的名称与 head 不相符,则 WSTestHead() 会失败.
  • 若发生错误,则 WSTestHead() 返回0;若函数成功,则返回非零值.
  • WSTestHead() 失败,则使用 WSError() 检索错误代码.
  • WSTP 的标头文件 wstp.h 已对 WSTestHead() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* test whether the head of the incoming object is "ReturnPacket" */

void f(WSLINK lp)
{
    int args;

    if(WSTestHead(lp, "ReturnPacket", &args))
        { /* read the contents of the ReturnPacket[] */ }
    else
        { /* the head of incoming packet is not "ReturnPacket" */ }
}