diff options
author | Marvin Borner | 2020-11-18 22:12:40 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-18 22:12:40 +0100 |
commit | be1fa7dfe5d98cf636b8f54ea80152f47006203b (patch) | |
tree | bed590b3e77de39bbb55f3d81d01b02661746129 /libnet/inc/http.h | |
parent | a5a04ef3de6ad3f81d37a04fede23eb3b4b348b1 (diff) |
HTTP and browser stuff
Diffstat (limited to 'libnet/inc/http.h')
-rw-r--r-- | libnet/inc/http.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libnet/inc/http.h b/libnet/inc/http.h new file mode 100644 index 0000000..30de9ba --- /dev/null +++ b/libnet/inc/http.h @@ -0,0 +1,10 @@ +// MIT License, Copyright (c) 2020 Marvin Borner + +#ifndef HTTP_H +#define HTTP_H + +char *http_data(char *response); +char *http_query_get(const char *url, const char *path); +char *http_code(char *r); + +#endif |