get_ast_kind method
\brief Return the kind of the given AST.
def_API('Z3_get_ast_kind', UINT, (_in(CONTEXT), _in(AST)))
Implementation
int get_ast_kind(
Z3_context c,
Z3_ast a,
) {
return _get_ast_kind(
c,
a,
);
}
\brief Return the kind of the given AST.
def_API('Z3_get_ast_kind', UINT, (_in(CONTEXT), _in(AST)))
int get_ast_kind(
Z3_context c,
Z3_ast a,
) {
return _get_ast_kind(
c,
a,
);
}