Skip to content
Snippets Groups Projects
Unverified Commit c01fd6f4 authored by Andrii Dmytrenko's avatar Andrii Dmytrenko
Browse files

Add wcstombs

The wcstombs() function conforms to ISO/IEC 9899:1999 (``ISO C99'')
parent 04d2c7af
No related branches found
No related tags found
No related merge requests found
......@@ -243,6 +243,7 @@ extern {
pub fn strtok(s: *mut c_char, t: *const c_char) -> *mut c_char;
pub fn strxfrm(s: *mut c_char, ct: *const c_char, n: size_t) -> size_t;
pub fn wcslen(buf: *const wchar_t) -> size_t;
pub fn wcstombs(dest: *mut c_char, src: *const wchar_t, n: size_t) -> ::size_t;
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;
......
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