From 477e1ba2977435ae7bb75c7dbd95cf28247f89bd Mon Sep 17 00:00:00 2001 From: nirav Date: Thu, 28 Mar 2019 09:10:52 +0530 Subject: Move APIs into libgs dir --- src/account.h | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 src/account.h (limited to 'src/account.h') diff --git a/src/account.h b/src/account.h deleted file mode 100644 index 547f276..0000000 --- a/src/account.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef __account_H -#define __account_H - -#include - -struct account { - char *id; - char *username; - char *acct; - char *display_name; - bool locked; - unsigned int follower_count; - unsigned int following_count; - unsigned int statuses_count; - char *note; - char *url; - char *avatar; - char *avatar_static; - char *header; - char *header_static; - struct account *moved; - bool bot; -}; - -struct account *account_from_json(const char *json_data); -struct account *account_from_json_t(const json_t *); -void account_free(struct account *); - -#endif -- cgit v1.2.3