get_decl_kind method

int get_decl_kind(
  1. Z3_context c,
  2. Z3_func_decl d
)

\brief Return declaration kind corresponding to declaration.

def_API('Z3_get_decl_kind', UINT, (_in(CONTEXT), _in(FUNC_DECL)))

Implementation

int get_decl_kind(
  Z3_context c,
  Z3_func_decl d,
) {
  return _get_decl_kind(
    c,
    d,
  );
}