

#include <nitro/std.h>
char* STD_SearchCharReverse( char* srcp, int c );
char* STD_StrRChr( char* srcp, int c );
| srcp | Specifies the pointer to the string to search. |
| c | Specifies the character to search for. |
Returns a pointer to the final position in the character c within the string srcp.
If it's not there, it returns FALSE.
Searches through the string srcp for the last occurrence of character c. It carries out the same operation as the C standard function strrchr().
STD_StrRChr() is defined as another name for STD_SearchCharReverse().
2007/12/10 Initial version.
CONFIDENTIAL