cWikiBot/http.h
2020-12-26 20:14:24 +01:00

16 lines
269 B
C

#ifndef WIKIBOT_HTTP_H
#define WIKIBOT_HTTP_H
#include <stddef.h>
struct httpResponse_t {
char *response;
size_t size;
};
size_t httpResponseCallback(char *data, size_t wordlength, size_t bytecount, void *out);
char* request(char *url );
#endif //WIKIBOT_HTTP_H