Skip to content
Snippets Groups Projects
Commit f3ba7e8d authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Merge branch 'wcscspn' into 'master'

Implements wcscspn function from wchar.h

See merge request redox-os/relibc!196
parents 74d0b249 ec3488c7
No related branches found
No related tags found
No related merge requests found
......@@ -295,7 +295,7 @@ pub unsafe extern "C" fn wcscat(ws1: *mut wchar_t, ws2: *const wchar_t) -> *mut
}
#[no_mangle]
pub unsafe extern "C" fn wcschr(ws: *const wchar_t, wc: wchar_t) -> *mut c_int {
pub unsafe extern "C" fn wcschr(ws: *const wchar_t, wc: wchar_t) -> *mut wchar_t {
let mut i = 0;
loop {
if *ws.add(i) == wc {
......@@ -331,9 +331,18 @@ pub unsafe extern "C" fn wcscpy(ws1: *mut wchar_t, ws2: *const wchar_t) -> *mut
}
}
// #[no_mangle]
pub extern "C" fn wcscspn(ws1: *const wchar_t, ws2: *const wchar_t) -> size_t {
unimplemented!();
#[no_mangle]
pub unsafe extern "C" fn wcscspn(ws1: *const wchar_t, ws2: *const wchar_t) -> size_t {
let mut i = 0;
loop {
let wc = *ws1.add(i);
if wc == 0 || wcschr(ws2, wc) != 0 as *mut wchar_t {
return i;
}
i += 1;
}
}
// #[no_mangle]
......
......@@ -86,7 +86,8 @@ EXPECT_BINS=\
wchar/mbrtowc \
wchar/mbsrtowcs \
wchar/putwchar \
wchar/wcrtomb
wchar/wcrtomb \
wchar/wcscspn
# Binaries that may generate varied output
BINS=\
......
#include <assert.h>
#include <wchar.h>
int main(void) {
assert(wcscspn(L"", L"") == 0);
assert(wcscspn(L"", L"h") == 0);
assert(wcscspn(L"a", L"a") == 0);
assert(wcscspn(L"ba", L"ab") == 0);
assert(wcscspn(L"ba", L"a") == 1);
assert(wcscspn(L"abcdefghijkl$\"£$%", L"zxqrst,./$w") == 12);
return 0;
}
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