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 e01321c + 5bf1fe4 commit 2022265Copy full SHA for 2022265
src/lib.rs
@@ -245,6 +245,7 @@ extern {
245
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
+ pub fn memset(dest: *mut c_void, c: c_int, n: size_t) -> *mut c_void;
249
}
250
251
// These are all inline functions on android, so they end up just being entirely
0 commit comments