Developer's Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
virtual P6R::P6ERR P6R::p6ISafeString::strrchr ( const P6CHAR pStr,
P6INT16  c,
P6SIZE  cchMax,
P6CHAR **  ppRetPtr 
)
pure virtual

Finds the last occurance of c in string,.

Parameters
pStr[ in ] A pointer to the NULL terminated string to search.
c[ in ] The character to search for.
cchMax[ in ] The maximum number of characters to search.
ppRetPtr[ out ] The address of a pointer in which will be placed a pointer to the first occurence of c.
Returns
SuccessP6R::eOk 
FailureP6R::eInvalidArgs or ppRetPtr is NULL
P6R::eNotFoundc was not found in pStr
P6R::eTooBigcchMax characters was exceeded in the comparison. The comparison was aborted.