ast_vector_inc_ref method

void ast_vector_inc_ref(
  1. Z3_context c,
  2. Z3_ast_vector v
)

\brief Increment the reference counter of the given AST vector.

def_API('Z3_ast_vector_inc_ref', VOID, (_in(CONTEXT), _in(AST_VECTOR)))

Implementation

void ast_vector_inc_ref(
  Z3_context c,
  Z3_ast_vector v,
) {
  return _ast_vector_inc_ref(
    c,
    v,
  );
}