Skip to content
Snippets Groups Projects
Commit 0327cc0b authored by Lzu Tao's avatar Lzu Tao
Browse files

Remove MSVC's wmemchr declaration

parent 39f43b5b
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,14 @@ extern "C" {
s2: *const ::c_char,
n: ::size_t,
) -> ::c_int;
// NOTE: For MSVC target, `wmemchr` is only a inline function in `<wchar.h>`
// header file. We cannot find a way to link to that symbol from Rust.
pub fn wmemchr(
cx: *const ::wchar_t,
c: ::wchar_t,
n: ::size_t,
) -> *mut ::wchar_t;
}
cfg_if! {
......
......@@ -378,7 +378,6 @@ extern "C" {
) -> ::size_t;
pub fn memchr(cx: *const c_void, c: c_int, n: size_t) -> *mut c_void;
pub fn wmemchr(cx: *const wchar_t, c: wchar_t, n: size_t) -> *mut wchar_t;
pub fn memcmp(cx: *const c_void, ct: *const c_void, n: size_t) -> c_int;
pub fn memcpy(
dest: *mut c_void,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment