Sha256: 4ac92b6bf7dc8a5e208d2822c9ac48c030193e36c7fa86baeef3187684ad264e

Contents?: true

Size: 132 Bytes

Versions: 8

Compression:

Stored size: 132 Bytes

Contents

#include <wchar.h>

wchar_t *wcspbrk(const wchar_t *s, const wchar_t *b)
{
	s += wcscspn(s, b);
	return *s ? (wchar_t *)s : NULL;
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
webruby-0.2.7 modules/emscripten/system/lib/libc/musl/src/string/wcspbrk.c
webruby-0.2.5 modules/emscripten/system/lib/libc/musl/src/string/wcspbrk.c
webruby-0.2.4 modules/emscripten/system/lib/libc/musl/src/string/wcspbrk.c
webruby-0.2.2 modules/emscripten/system/lib/libc/musl/src/string/wcspbrk.c
webruby-0.2.1 modules/emscripten/system/lib/libc/musl/src/string/wcspbrk.c
webruby-0.1.2 modules/emscripten/system/lib/libc/musl/src/string/wcspbrk.c
webruby-0.1.1 modules/emscripten/system/lib/libc/musl/src/string/wcspbrk.c
webruby-0.1.0 modules/emscripten/system/lib/libc/musl/src/string/wcspbrk.c