Lines Matching defs:sep
107 const char *sep;
111 sep = strstr(url, "//");
112 if(!sep)
113 sep = url;
115 sep += 2;
117 query = strchr(sep, '?');
118 sep = strchr(sep, '/');
120 if(!sep)
121 sep = url + strlen(url);
126 return sep < query ? sep : query;
348 char *sep = strchr(protsep, '?');
349 if(sep && (sep < pathsep))
350 pathsep = sep;