#define NOCCARGC /* ** Reverse a string in place. */ reverse(s) char *s; { char *j; int c; j = s + strlen(s) -1; while(s < j) { c = *s; *s++ = *j; *j-- = c; } }