#ifndef __GS_TIMELINE_H #define __GS_TIMELINE_H #include "status.h" #include "client.h" struct gs_timeline { struct gs_status **statuses; size_t size; }; struct gs_timeline *gs_timeline_get(GSClient *c, const char *max_id, const char *since_id, const char *min_id, int limit); struct gs_timeline *gs_timeline_from_json(const char *); void gs_timeline_free(struct gs_timeline *); #endif