diff options
author | nirav <nirav@teisuu.com> | 2019-03-28 09:10:52 +0530 |
---|---|---|
committer | nirav <nirav@teisuu.com> | 2019-03-28 09:10:52 +0530 |
commit | 477e1ba2977435ae7bb75c7dbd95cf28247f89bd (patch) | |
tree | ce1f9719a7d11bbd47e9adea26dd610bc087962e /src/account.h | |
parent | cc727e972f7fdc871ee1f42cf014151b67422bf0 (diff) | |
download | ap_client-master.tar.gz ap_client-master.zip |
Diffstat (limited to 'src/account.h')
-rw-r--r-- | src/account.h | 29 |
1 files changed, 0 insertions, 29 deletions
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 <stdbool.h> - -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 |