apply_result_inc_ref method
\brief Increment the reference counter of the given \c Z3_apply_result object.
def_API('Z3_apply_result_inc_ref', VOID, (_in(CONTEXT), _in(APPLY_RESULT)))
Implementation
void apply_result_inc_ref(
Z3_context c,
Z3_apply_result r,
) {
return _apply_result_inc_ref(
c,
r,
);
}