diff options
author | nirav <nirav@teisuu.com> | 2019-03-28 09:10:52 +0530 |
---|---|---|
committer | nirav <nirav@teisuu.com> | 2019-03-28 09:10:52 +0530 |
commit | 477e1ba2977435ae7bb75c7dbd95cf28247f89bd (patch) | |
tree | ce1f9719a7d11bbd47e9adea26dd610bc087962e /libgs/src/http.h | |
parent | cc727e972f7fdc871ee1f42cf014151b67422bf0 (diff) | |
download | ap_client-477e1ba2977435ae7bb75c7dbd95cf28247f89bd.tar.gz ap_client-477e1ba2977435ae7bb75c7dbd95cf28247f89bd.zip |
Diffstat (limited to 'libgs/src/http.h')
-rw-r--r-- | libgs/src/http.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libgs/src/http.h b/libgs/src/http.h new file mode 100644 index 0000000..a0d850d --- /dev/null +++ b/libgs/src/http.h @@ -0,0 +1,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 |