wcscspn.c

The libc implementation

Author

Marcel Sondaar

License

Public Domain

Summary
wcscspn.cThe libc implementation
Functions
wcscspnTests characters in s1 for an occurance in s2 until a match is found

Functions

wcscspn

size_t wcscspn(const wchar_t *s1,
const wchar_t *s2)

Tests characters in s1 for an occurance in s2 until a match is found

Returns the amount of characters from the beginning of s1 that do NOT occur in s2

size_t wcscspn(const wchar_t *s1,
const wchar_t *s2)
Tests characters in s1 for an occurance in s2 until a match is found