char *strrchr( const char *str, int c )



	- prototype in string.h

	- scans a string in reverse direction for specified character c
	- strrchr finds the LAST occurrence of c in str
	- returns pointer to LAST occurrence, or NULL if not found