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 charater to search. |
| ppRetPtr | [out] The address of a pointer in which will be placed a pointer to the first occurence of c. |
- Returns:
Success | P6R::eOk | |
Failure | P6R::eInvalidArg | s or ppRetPtr is NULL |
P6R::eNotFound | c was not found in pStr |
P6R::eTooBig | cchMax characters was exceeded in the comparison. The comparison was aborted. |