Wednesday, November 30, 2016

C String Search Functions

Search Functions:
memchrvoid* memchr( const void* ptrint chsize_t count );
strchrchar *strchr( const char *strint ch );
strcspnsize_t strcspn( const char *destconst char *src );
strpbrkchar* strpbrk( const char* destconst char* breakset );
strrchrchar *strrchr( const char *strint ch );
strspnsize_t strspn( const char *destconst char *src );
strstrchar *strstr( const char* strconst char* substr );
strtokchar *strtok( char *strconst char *delim );
strtok_s(C11)char *strtok_s(char *restrict strrsize_t *restrict strmaxconst char *restrict delimchar **restrict ptr);

string.h
Copying Functions
Concatenation Functions
Comparison Functions
Search Functions
Miscellaneous 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