set copyright year to 2015
[ppastats.git] / src / lp_json.h
index cfb803d..5c33ba3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011-2014 jeanfi@gmail.com
+ * Copyright (C) 2011-2015 jeanfi@gmail.com
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License as
 #ifndef _PPASTATS_LP_JSON_H_
 #define _PPASTATS_LP_JSON_H_
 
-#include <json/json.h>
+#include <json.h>
+
+#include <config.h>
+
+/* Declares json_bool to have consistent code even with
+   old json lib releases using boolean instead of json_bool.*/
+#ifndef HAVE_JSON_BOOL
+typedef int json_bool;
+#endif
 
 #include "lp.h"
 
@@ -33,4 +41,9 @@ struct distro_series *json_object_to_distro_series(json_object *o);
 struct daily_download_total * *
 json_object_to_daily_download_totals(json_object *o);
 
+json_object *ddts_to_json(struct daily_download_total **);
+
+struct json_object *date_to_json(struct tm *tm);
+
+json_object *time_to_json(time_t t);
 #endif