param_descrs_inc_ref method

void param_descrs_inc_ref(
  1. Z3_context c,
  2. Z3_param_descrs p
)

\brief Increment the reference counter of the given parameter description set.

def_API('Z3_param_descrs_inc_ref', VOID, (_in(CONTEXT), _in(PARAM_DESCRS)))

Implementation

void param_descrs_inc_ref(
  Z3_context c,
  Z3_param_descrs p,
) {
  return _param_descrs_inc_ref(
    c,
    p,
  );
}