We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 52382d6 + 2e5cb86 commit fd48bbbCopy full SHA for fd48bbb
src/unix/solarish/mod.rs
@@ -2835,6 +2835,15 @@ extern "C" {
2835
outdata: *mut u64,
2836
validity: *mut ::c_uint,
2837
) -> ::c_int;
2838
+
2839
+ pub fn strcasecmp_l(s1: *const ::c_char, s2: *const ::c_char, loc: ::locale_t) -> ::c_int;
2840
+ pub fn strncasecmp_l(
2841
+ s1: *const ::c_char,
2842
+ s2: *const ::c_char,
2843
+ n: ::size_t,
2844
+ loc: ::locale_t,
2845
+ ) -> ::c_int;
2846
+ pub fn strsep(string: *mut *mut ::c_char, delim: *const ::c_char) -> *mut ::c_char;
2847
}
2848
2849
mod compat;
0 commit comments