summaryrefslogtreecommitdiff
path: root/src/account.h
diff options
context:
space:
mode:
authornirav <nirav@teisuu.com>2019-03-26 07:54:56 +0530
committerDandelion <nirav@teisuu.com>2019-03-26 07:54:56 +0530
commitcc727e972f7fdc871ee1f42cf014151b67422bf0 (patch)
treeeda5279bf96e4999e4219beb331df4646cfd2a5b /src/account.h
parent4b27c1a348d8de036dabd5525452f5b9ad08a32b (diff)
downloadap_client-cc727e972f7fdc871ee1f42cf014151b67422bf0.tar.gz
ap_client-cc727e972f7fdc871ee1f42cf014151b67422bf0.zip
Update login flow and timeline window
Diffstat (limited to 'src/account.h')
-rw-r--r--src/account.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/account.h b/src/account.h
index 049c829..547f276 100644
--- a/src/account.h
+++ b/src/account.h
@@ -22,6 +22,8 @@ struct account {
bool bot;
};
-struct account *account_from_json(char *json_data);
+struct account *account_from_json(const char *json_data);
+struct account *account_from_json_t(const json_t *);
+void account_free(struct account *);
#endif