(no commit message)
[prss.git] / src / http.h
index 91ffcc2..dd78640 100644 (file)
 #ifndef _PRSS_HTTP_H_
 #define _PRSS_HTTP_H_
 
+#include <json/json.h>
+
 void http_init();
-json_object *get_json_object(const char *url);
-json_object *post_json_object(const char *url, struct json_object *);
+void http_cleanup();
+json_object *http_json_get(const char *url, struct json_object *);
 
 #endif