wcspbrk.c

The libc implementation

Author

Marcel Sondaar

License

Public Domain

Summary
wcspbrk.cThe libc implementation
Functions
wcspbrkFinds the first character in s1 that occurs in s2

Functions

wcspbrk

wchar_t * wcspbrk(const wchar_t *s1,
const wchar_t *s2)

Finds the first character in s1 that occurs in s2

Returns a pointer to a character in s1 that occurs in s2

Returns NULL if s1 and s2 do not share any characters

wchar_t * wcspbrk(const wchar_t *s1,
const wchar_t *s2)
Finds the first character in s1 that occurs in s2