Reverses the character order in a string.
#include <string.h>
char *strrev (
char *s1);
(IN) Points to the string to reverse.
Returns a pointer to the altered string.
The strrev function replaces the string s1 with a string whose characters are in the reverse order.