probe_get_descr method
\brief Return a string containing a description of the probe with the given name.
def_API('Z3_probe_get_descr', STRING, (_in(CONTEXT), _in(STRING)))
Implementation
Z3_string probe_get_descr(
Z3_context c,
Z3_string name,
) {
return _probe_get_descr(
c,
name,
);
}