#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