1bb9dafe39
FossilOrigin-Name: f1def5fc963f9b5be6fdc11b12615815662405568b3ff991317983ad1a747523
21 lines
466 B
C
21 lines
466 B
C
/*
|
|
* Licensed under BSD 2-Clause License
|
|
*/
|
|
|
|
#ifndef MASTODONT_HISTORY
|
|
#define MASTODONT_HISTORY
|
|
#include <cjson/cJSON.h>
|
|
#include <time.h>
|
|
|
|
struct mstdnt_history
|
|
{
|
|
time_t day;
|
|
unsigned uses;
|
|
unsigned accounts;
|
|
};
|
|
|
|
int mstdnt_history_json(struct mstdnt_history* tag, cJSON* js);
|
|
int mstdnt_histories_json(struct mstdnt_history* tags[], size_t* array_size, cJSON* js);
|
|
void _mstdnt_val_histories_call(cJSON* v, void* _type);
|
|
|
|
#endif /* MASTODONT_TAG */
|