theurl             42 ext/standard/url.c PHPAPI void php_url_free(php_url *theurl)
theurl             44 ext/standard/url.c 	if (theurl->scheme)
theurl             45 ext/standard/url.c 		efree(theurl->scheme);
theurl             46 ext/standard/url.c 	if (theurl->user)
theurl             47 ext/standard/url.c 		efree(theurl->user);
theurl             48 ext/standard/url.c 	if (theurl->pass)
theurl             49 ext/standard/url.c 		efree(theurl->pass);
theurl             50 ext/standard/url.c 	if (theurl->host)
theurl             51 ext/standard/url.c 		efree(theurl->host);
theurl             52 ext/standard/url.c 	if (theurl->path)
theurl             53 ext/standard/url.c 		efree(theurl->path);
theurl             54 ext/standard/url.c 	if (theurl->query)
theurl             55 ext/standard/url.c 		efree(theurl->query);
theurl             56 ext/standard/url.c 	if (theurl->fragment)
theurl             57 ext/standard/url.c 		efree(theurl->fragment);
theurl             58 ext/standard/url.c 	efree(theurl);
theurl             34 ext/standard/url.h PHPAPI void php_url_free(php_url *theurl);