#ifndef __TIMELINE_H #define __TIMELINE_H #include "status.h" struct timeline { struct status **statuses; size_t size; }; struct timeline *timeline_from_json(const char *); void timeline_free(struct timeline *); int get_timeline(const char *max_id, const char *since_id, const char *min_id, int limit, void (*callback)(bool success, struct timeline *t)); #endif