func_interp_inc_ref method
\brief Increment the reference counter of the given Z3_func_interp object.
def_API('Z3_func_interp_inc_ref', VOID, (_in(CONTEXT), _in(FUNC_INTERP)))
Implementation
void func_interp_inc_ref(
Z3_context c,
Z3_func_interp f,
) {
return _func_interp_inc_ref(
c,
f,
);
}