WSGetArgCount (C 関数)
int WSGetArgCount(WSLINK link,int *n)
link 上の関数の引数個数を調べ,その結果をn に保持する.
例題
例 (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:
/* ... */
}
/* ... */
}