Finds the last occurrence of a specific character in a string.
lib_str.h/lib_str.c
CPU_CHAR *Str_Char_Last (const CPU_CHAR *pstr, CPU_CHAR srch_char); |
pstr
Pointer to the string to search for the specified character.
srch_char
Character to search for in the string.
Pointer to last occurrence of character in string, if no errors;
Pointer to NULL
, otherwise.
None.
String buffer not modified.
String search terminates if string pointer points to or overlaps the NULL
address.
CPU_CHAR *pstr; pstr = Str_Char_Last("Hello World!", 'l'); |