blob: 32828db78d2f20baec59bf0551cf095d98338d25 (
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
|