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.
1 parent 16f6fef commit 1c4e0deCopy full SHA for 1c4e0de
src/lib.rs
@@ -280,6 +280,9 @@ extern "C" {
280
pub fn strdup(cs: *const c_char) -> *mut c_char;
281
pub fn strpbrk(cs: *const c_char, ct: *const c_char) -> *mut c_char;
282
pub fn strstr(cs: *const c_char, ct: *const c_char) -> *mut c_char;
283
+ pub fn strcasestr(cs: *const c_char, ct: *const c_char) -> *mut c_char;
284
+ pub fn strcasecmp(s1: *const c_char, s2: *const c_char) -> c_int;
285
+ pub fn strncasecmp(s1: *const c_char, s2: *const c_char, n: size_t) -> c_int;
286
pub fn strlen(cs: *const c_char) -> size_t;
287
pub fn strnlen(cs: *const c_char, maxlen: size_t) -> size_t;
288
#[cfg_attr(
0 commit comments