get_app_num_args method

int get_app_num_args(
  1. Z3_context c,
  2. Z3_app a
)

\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,
  );
}