1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 #pragma once
3 
4 #include <stdbool.h>
5 
6 #include "macro.h"
7 
8 bool http_url_is_valid(const char *url) _pure_;
9 bool file_url_is_valid(const char *url) _pure_;
10 
11 bool documentation_url_is_valid(const char *url) _pure_;
12 
13 bool http_etag_is_valid(const char *etag);
14