summaryrefslogtreecommitdiff
path: root/libgs/src/http.h
blob: a0d850db582bbad921b72e13c1d27911a56f2ea3 (plain)
1
2
3
4
5
6
7
8
9
#ifndef __GS_HTTP_H
#define __GS_HTTP_H

int gs_http_init();
void gs_http_cleanup();
char *gs_http_get(const char *url, const char *token);
char *gs_http_post(const char *url, const char *token, const char *data);

#endif