MLGetArgCount (C 函数)
MLGetArgCount 已经被 WSGetArgCount 所取代.
int MLGetArgCount(MLINK link,int *n)
查找 link 中一个函数的自变量数并把结果存储在 n.
范例
基本范例 (1)
#include "mathlink.h"
/* check a link for a function and return the number of arguments */
int f(MLINK lp)
{
int a;
switch(MLGetType(lp))
{
case MLTKFUNC:
/* get the argument size */
if(! MLGetArgCount(lp, &a))
{ /* unable to get the number of arguments from lp */ }
return a;
default:
/* ... */
}
/* ... */
}