httpc.h (307B)
- // SPDX-FileCopyrightText: 2017 Haelwenn (lanodan) Monnier <contact+httpc@hacktivis.me>
- // SPDX-License-Identifier: MPL-2.0
- struct URI {
- char *scheme;
- char *host;
- char *port;
- char *path;
- char *fragment;
- };
- void decode_uri_finish(struct URI *uri);
- struct URI *decode_uri(const char *arg, char **err);