summaryrefslogtreecommitdiff
path: root/src/account.h
diff options
context:
space:
mode:
authornirav <nirav@teisuu.com>2019-03-28 09:10:52 +0530
committernirav <nirav@teisuu.com>2019-03-28 09:10:52 +0530
commit477e1ba2977435ae7bb75c7dbd95cf28247f89bd (patch)
treece1f9719a7d11bbd47e9adea26dd610bc087962e /src/account.h
parentcc727e972f7fdc871ee1f42cf014151b67422bf0 (diff)
downloadap_client-master.tar.gz
ap_client-master.zip
Move APIs into libgs dirHEADmaster
Diffstat (limited to 'src/account.h')
-rw-r--r--src/account.h29
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