Wide string search 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
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 ); |
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