From 6dd58a30761eca36544c4e815b36907eab084949 Mon Sep 17 00:00:00 2001 From: nirav Date: Thu, 7 Mar 2019 01:27:55 +0530 Subject: Initial commit --- src/timeline.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/timeline.h (limited to 'src/timeline.h') diff --git a/src/timeline.h b/src/timeline.h new file mode 100644 index 0000000..f21b3b6 --- /dev/null +++ b/src/timeline.h @@ -0,0 +1,14 @@ +#ifndef __TIMELINE_H +#define __TIMELINE_H + +#include "status.h" + +struct timeline { + struct status **statuses; + size_t size; +}; + +struct timeline *timeline_from_json(char *); +void timeline_free(struct timeline *); + +#endif -- cgit v1.2.3