1 2 3 4 5 6 7 8 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