X-Git-Url: http://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Flp_json.h;h=8ffcbaf4e349df6ec61770994f5f42eb8d1c62ea;hb=eb26e5d2404df23c3151a55a6d887abb421ef601;hp=99add453b4de027a0894d6973dffec89e7a20bfb;hpb=8fbc54a7960312d1626f4032d5fef5bf8a37db70;p=ppastats.git diff --git a/src/lp_json.h b/src/lp_json.h index 99add45..8ffcbaf 100644 --- a/src/lp_json.h +++ b/src/lp_json.h @@ -20,14 +20,14 @@ #ifndef _PPASTATS_LP_JSON_H_ #define _PPASTATS_LP_JSON_H_ -#include +#include #include /* Declares json_bool to have consistent code even with old json lib releases using boolean instead of json_bool.*/ #ifndef HAVE_JSON_BOOL -typedef boolean json_bool; +typedef int json_bool; #endif #include "lp.h" @@ -41,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