logo

httpc

barebones HTTP client, intended for simple usage like downloading filesgit clone https://hacktivis.me/git/httpc.git

httpc.h (307B)


  1. // SPDX-FileCopyrightText: 2017 Haelwenn (lanodan) Monnier <contact+httpc@hacktivis.me>
  2. // SPDX-License-Identifier: MPL-2.0
  3. struct URI {
  4. char *scheme;
  5. char *host;
  6. char *port;
  7. char *path;
  8. char *fragment;
  9. };
  10. void decode_uri_finish(struct URI *uri);
  11. struct URI *decode_uri(const char *arg, char **err);