inc_ref method
\brief Increment the reference counter of the given AST. The context \c c should have been created using #Z3_mk_context_rc. This function is a NOOP if \c c was created using #Z3_mk_context.
def_API('Z3_inc_ref', VOID, (_in(CONTEXT), _in(AST)))
Implementation
void inc_ref(
Z3_context c,
Z3_ast a,
) {
return _inc_ref(
c,
a,
);
}