WSGetArgCount (C 関数)

int WSGetArgCount(WSLINK link,int *n)

link 上の関数の引数個数を調べ,その結果をn に保持する.

詳細

  • WSGetArgCount()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

  (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:
            /* ... */
    }

    /* ... */
}