Lines Matching defs:url
39 bool http_url_is_valid(const char *url) {
42 if (isempty(url))
45 p = startswith(url, "http://");
47 p = startswith(url, "https://");
57 bool documentation_url_is_valid(const char *url) {
60 if (isempty(url))
63 if (http_url_is_valid(url))
66 p = startswith(url, "file:/");
68 p = startswith(url, "info:");
70 p = startswith(url, "man:");