blob: 73f46bba2c0224621670bbb0fab538e4c4980d17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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
|