pub unsafe extern "C" fn bootloader_common_label_search(
    list: *const c_char,
    label: *mut c_char
) -> bool
Expand description

@brief Determines if the list contains the label

@param[in] list A string of names delimited by commas or spaces. Like this “nvs, phy, data”. The string must be null-terminated. @param[in] label The substring that will be searched in the list. @return Returns true if the list contains the label, false otherwise.