#[no_mangle]
pub unsafe extern "C" fn pineappl_keyval_string(
    key_vals: *const KeyVal,
    key: *const c_char
) -> *const c_char
Expand description

Get the int-valued parameter with name key stored in key_vals.

§Safety

The parameter key_vals must point to a valid KeyVal object created by pineappl_keyval_new. key must be a valid C string.