diff options
| author | nirav <nirav@teisuu.com> | 2019-03-07 01:27:55 +0530 |
|---|---|---|
| committer | Dandelion <nirav@teisuu.com> | 2019-03-07 01:27:55 +0530 |
| commit | 6dd58a30761eca36544c4e815b36907eab084949 (patch) | |
| tree | c1bc857a14fffe6f35f7405f133c0ed114aec1a4 /src/timeline.h | |
| download | ap_client-6dd58a30761eca36544c4e815b36907eab084949.tar.gz ap_client-6dd58a30761eca36544c4e815b36907eab084949.zip | |
Initial commit
Diffstat (limited to 'src/timeline.h')
| -rw-r--r-- | src/timeline.h | 14 |
1 files changed, 14 insertions, 0 deletions
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 |
