fluid_settings_getstr

Function fluid_settings_getstr 

Source
pub unsafe extern "C" fn fluid_settings_getstr(
    settings: *mut fluid_settings_t,
    name: *const c_char,
    str_: *mut *mut c_char,
) -> c_int
Expand description

Get the value of a string setting. If the value does not exists, ‘str’ is set to NULL. Otherwise, ‘str’ will point to the value. The application does not own the returned value. Instead, the application should make a copy of the value if it needs it later.

\returns 1 if the value exists, 0 otherwise