#[no_mangle]
pub unsafe extern "C" fn pineappl_keyval_set_string(
    key_vals: *mut KeyVal,
    key: *const c_char,
    value: *const c_char
)
Expand description

Set the string-valued parameter with name key to value 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.