dec_ref method
\brief Decrement 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_dec_ref', VOID, (_in(CONTEXT), _in(AST)))
Implementation
void dec_ref(
Z3_context c,
Z3_ast a,
) {
return _dec_ref(
c,
a,
);
}