get_app_num_args method
\brief Return the number of argument of an application. If \c t is an constant, then the number of arguments is 0.
\sa Z3_get_app_arg
def_API('Z3_get_app_num_args', UINT, (_in(CONTEXT), _in(APP)))
Implementation
int get_app_num_args(
Z3_context c,
Z3_app a,
) {
return _get_app_num_args(
c,
a,
);
}