...
lib_str.h/lib_str.c
Prototype
Code Block | ||
---|---|---|
| ||
CPU_CHAR *Str_Str (const CPU_CHAR *pstr,
const CPU_CHAR *pstr_srch); |
Arguments
pstr
Pointer to the string to search for the specified string.
...
String search terminates if string pointer points to or overlaps the NULL
address.
Example Usage
Code Block | ||
---|---|---|
| ||
CPU_CHAR *pstr;
pstr = Str_Str("Hello World!", "lo"); |