Defines an account in the user editor.
typedef struct _v3_account { v3_permissions perms; char *username; char *owner; char *notes; char *lock_reason; int chan_admin_count; uint16_t *chan_admin; // array of channel ids, where the account is admin in int chan_auth_count; uint16_t *chan_auth; // array of channel ids, where the account is authed in void *next; } v3_account;
