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 23b69f3 + 988305b commit 290d4b1Copy full SHA for 290d4b1
src/lib.rs
@@ -241,8 +241,10 @@ extern {
241
pub fn strxfrm(s: *mut c_char, ct: *const c_char, n: size_t) -> size_t;
242
pub fn wcslen(buf: *const wchar_t) -> size_t;
243
244
- pub fn memcmp(cx: *const c_void, ct: *const c_void, n: size_t) -> c_int;
245
pub fn memchr(cx: *const c_void, c: c_int, n: size_t) -> *mut c_void;
+ pub fn memcmp(cx: *const c_void, ct: *const c_void, n: size_t) -> c_int;
246
+ pub fn memcpy(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void;
247
+ pub fn memmove(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void;
248
}
249
250
// These are all inline functions on android, so they end up just being entirely
0 commit comments