WSGetArgCount (C 函数)

int WSGetArgCount(WSLINK link,int *n)

查找 link 中一个函数的自变量数并把结果存储在 n.

更多信息

  • WSTP 的标头文件 wstp.h 已对 WSGetArgCount() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* check a link for a function and return the number of arguments */

int f(WSLINK lp)
{
    int a;

    switch(WSGetType(lp))
    {
        case WSTKFUNC:
            /* get the argument size */
            if(! WSGetArgCount(lp, &a))
                { /* unable to get the number of arguments from lp */ }
            return a;
        default:
            /* ... */
    }

    /* ... */
}