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