Wednesday, November 30, 2016

C Wide string search functions

Wide string search Functions:
wcschr(C95) wchar_t * wcschr( const wchar_t * str, wchar_t ch );
wcsrchr(C95) wchar_t * wcsrchr( const wchar_t * str, wchar_t ch );
wcsspn(C95) size_t wcsspn( const wchar_t * dest, const wchar_t * src );
wcscspn(C95) size_t wcscspn( const wchar_t * dest, const wchar_t * src );
wcspbrk(C95) wchar_t * wcspbrk( const wchar_t * dest, const wchar_t * str );
wcsstr(C95) wchar_t * wcsstr( const wchar_t * dest, const wchar_t * src );
wcstok(C95) wchar_t * wcstok( wchar_t * str, const wchar_t * delim, wchar_t **ptr );
wcstok_s(C11) wchar_t *wcstok_s( wchar_t *restrict str, rsize_t *restrict strmax, const wchar_t *restrict delim, wchar_t **restrict ptr);
wmemchr(C95) wchar_t *wmemchr( const wchar_t *ptr, wchar_t ch, size_t count );

wchar.h
Formatted wide character input/output Functions
Wide character input/output Functions
Wide string numeric conversion Functions
Wide string copying Functions
Wide string concatenation Functions
Wide string comparison Functions
Wide string search functions
Miscellaneous Functions
Wide character time conversion Functions
Single-byte/wide character conversion Functions
Conversion state Functions
Restartable multibyte/wide character conversion Functions
Restartable multibyte/wide string conversion Functions


Related topics:
Library Functions in C   |   Standard Library in C   |   Header Files in C   |   Functions in C   |   Keywords in C   |   Data Types in C   |   Pointers in C

List of topics: C Programming

No comments:

Post a Comment