Lines Matching refs:sep
109 const char *sep; in find_host_sep() local
113 sep = strstr(url, "//"); in find_host_sep()
114 if(!sep) in find_host_sep()
115 sep = url; in find_host_sep()
117 sep += 2; in find_host_sep()
119 query = strchr(sep, '?'); in find_host_sep()
120 sep = strchr(sep, '/'); in find_host_sep()
122 if(!sep) in find_host_sep()
123 sep = url + strlen(url); in find_host_sep()
128 return sep < query ? sep : query; in find_host_sep()
351 char *sep = strchr(protsep, '?'); in concat_url() local
352 if(sep && (sep < pathsep)) in concat_url()
353 pathsep = sep; in concat_url()