rindex - character string operations (LEGACY)
The rindex() function shall be equivalent to strrchr() .
Refer to strrchr() .
Refer to strrchr() .
None.
The strrchr() function is preferred over this function.
For maximum portability, it is recommended to replace the function call to rindex() as follows:
#define rindex(a,b) strrchr((a),(b))
None.
This function may be withdrawn in a future version.
strrchr() , the Base Definitions volume of IEEE Std 1003.1-2001, <strings.h>
First released in Issue 4, Version 2.
Moved from X/OPEN UNIX extension to BASE.
This function is marked LEGACY.