Operating systems, development tools, and professional services
for connected embedded systems
for connected embedded systems
![]() |
![]() |
![]() |
![]() |
wcsrchr()
Find the last occurrence of a wide character in a string
Synopsis:
#include <wchar.h>
wchar_t * wcsrchr( const wchar_t * ws,
wchar_t wc );
Arguments:
- ws
- The wide-character string that you want to search.
- wc
- The wide character that you're looking for.
Library:
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
Description:
The wcsrchr() function finds the last occurrence of wc in the string pointed to by ws. The terminating NUL character is considered to be part of the string.
Returns:
A pointer to the located wide character, or NULL if wc doesn't occur in the string.
Classification:
| Safety: | |
|---|---|
| Cancellation point | No |
| Interrupt handler | Yes |
| Signal handler | Yes |
| Thread | Yes |
See also:
memchr(), strchr(), strcspn(), strpbrk(), strrchr(), strspn(), strstr(), strtok(), strtok_r(), wcschr(), wcscspn(), wcspbrk(), wcsspn(), wcsstr(), wcstok()
![]() |
![]() |
![]() |
![]() |

![[Previous]](../prev.gif)
![[Contents]](../contents.gif)
![[Index]](../keyword_index.gif)
![[Next]](../next.gif)