param_descrs_get_documentation method
\brief Retrieve documentation string corresponding to parameter name \c s.
def_API('Z3_param_descrs_get_documentation', STRING, (_in(CONTEXT), _in(PARAM_DESCRS), _in(SYMBOL)))
Implementation
Z3_string param_descrs_get_documentation(
Z3_context c,
Z3_param_descrs p,
Z3_symbol s,
) {
return _param_descrs_get_documentation(
c,
p,
s,
);
}