return NULL;
else
s++;
} else if ((s = strpbrk(s, ":/")) == NULL)
} else if ((s = strpbrk(s, ":")) == NULL)
s = *cp + strlen(*cp); /* skip to end (see first case below) */
switch (*s) {
break;
case ':':
case '/':
*s = '\0'; /* terminate */
*cp = s + 1;
-