/** @file account.h * Account structure header file used in the program */ #ifndef ACCOUNT_H #define ACCOUNT_H #include "subaccount.h" #include "money.h" /** * @struct account * @brief Struct representing an Account in the the T-Account */ typedef struct account { char *name; ///