summaryrefslogtreecommitdiff
path: root/src/account.h
diff options
context:
space:
mode:
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