pub unsafe extern "C" fn aws_array_eq_c_str(
array: *const c_void,
array_len: usize,
c_str: *const c_char
) -> bool
Expand description
Compare an array and a null-terminated string. Returns true if their contents are equivalent. The array should NOT contain a null-terminator, or the comparison will always return false. NULL may be passed as the array pointer if its length is declared to be 0.