|
Embedded Artistry Framework
Embedded Systems C++ Framework
|
#include <string.h>
Functions | |
| char * | strstr (const char *string, const char *substring) |
| Finds the first occurrence of the substring in the string. More... | |
| char* strstr | ( | const char * | string, |
| const char * | substring | ||
| ) |
Finds the first occurrence of the substring in the string.
Finds the first occurrence of the null-terminated byte string pointed to by substring in the null-terminated byte string pointed to by string. The terminating null characters are not compared.
The behavior is undefined if either stirng or substring is not a pointer to a null-terminated byte string.
| string | pointer to the null-terminated byte string to examine |
| substring | pointer to the null-terminated byte string to search for |
1.8.15