1 2 3 4 5 6
char *strip_slash(char *s) /*EXTRACT_INCL*/ { char *p, *q; for (p=q=s; *p; p++) if (*p == '/') q=p+1; return q; }