wcschr(3C)


wcschr -- scan a wide character string

Synopsis

#include <wchar.h>

wchar_t *wcschr(const wchar_t *ws, wint_t wc);

Description

wcschr scans the wide character string pointed to by ws for the wide character specified by wc. The null wide character terminating a string is considered to be part of the string.

Return values

wcschr returns a pointer to the first occurrence of wide character wc in wide character string ws, or a null pointer if wc does not occur in the string.

References

wchar(5), wcsrchr(3C)
30 January 1998
© 1998 The Santa Cruz Operation, Inc. All rights reserved.