wcschr.c

The libc implementation

Author

Marcel Sondaar

License

Public Domain

Summary
wcschr.cThe libc implementation
Functions
wcschrFinds the first occurance of the character c in the null-terminated string s

Functions

wcschr

wchar_t * wcschr(const wchar_t *s,
wchar_t c)

Finds the first occurance of the character c in the null-terminated string s

Returns a pointer to the location in the string where c is found

Returns NULL if c could not be found

wchar_t * wcschr(const wchar_t *s,
wchar_t c)
Finds the first occurance of the character c in the null-terminated string s