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
memchr | void* memchr( const void* ptr, int ch, size_t count ); |
strchr | char *strchr( const char *str, int ch ); |
strcspn | size_t strcspn( const char *dest, const char *src ); |
strpbrk | char* strpbrk( const char* dest, const char* breakset ); |
strrchr | char *strrchr( const char *str, int ch ); |
strspn | size_t strspn( const char *dest, const char *src ); |
strstr | char *strstr( const char* str, const char* substr ); |
strtok | char *strtok( char *str, const char *delim ); |
strtok_s(C11) | char *strtok_s(char *restrict str, rsize_t *restrict strmax, const char *restrict delim, char **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