From 6dd58a30761eca36544c4e815b36907eab084949 Mon Sep 17 00:00:00 2001 From: nirav Date: Thu, 7 Mar 2019 01:27:55 +0530 Subject: Initial commit --- src/http.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/http.h (limited to 'src/http.h') diff --git a/src/http.h b/src/http.h new file mode 100644 index 0000000..d7ba313 --- /dev/null +++ b/src/http.h @@ -0,0 +1,9 @@ +#ifndef __HTTP_H +#define __HTTP_H + +int http_init(); +void http_cleanup(); +char *get_request(const char *url); +char *post_request(const char *url, char *data); + +#endif -- cgit v1.2.3