#ifndef __account_H #define __account_H #include 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(char *json_data); #endif