diff options
Diffstat (limited to 'src/account.h')
-rw-r--r-- | src/account.h | 4 |
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 |