pub unsafe extern "C" fn aws_array_eq_ignore_case(
array_a: *const c_void,
len_a: usize,
array_b: *const c_void,
len_b: usize
) -> bool
Expand description
Perform a case-insensitive string comparison of two arrays. Return whether their contents are equivalent. NULL may be passed as the array pointer if its length is declared to be 0. The “C” locale is used for comparing upper and lowercase letters. Data is assumed to be ASCII text, UTF-8 will work fine too.