get_ast_kind method

int get_ast_kind(
  1. Z3_context c,
  2. Z3_ast a
)

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