blob: 8e69b55dc2bae44038c951602962891d7c332adf (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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);
/* int http_post_async(char *url, char *post_data, void (*callback)(char *)); */
#endif
|