probe_inc_ref method
\brief Increment the reference counter of the given probe.
def_API('Z3_probe_inc_ref', VOID, (_in(CONTEXT), _in(PROBE)))
Implementation
void probe_inc_ref(
Z3_context c,
Z3_probe p,
) {
return _probe_inc_ref(
c,
p,
);
}