STD_SearchCharReverse

Syntax

#include <nitro/std.h>

char* STD_SearchCharReverse( char* srcp, int c );

char* STD_StrRChr( char* srcp, int c );

Arguments

srcp Specifies the pointer to the string to search.
c Specifies the character to search for.

Return Values

Returns a pointer to the final position in the character c within the string srcp.
If it's not there, it returns FALSE.

Description

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().

See Also

Revision History

2007/12/10 Initial version.


CONFIDENTIAL