22 lines
342 B
C
22 lines
342 B
C
/**
|
|
* @file taccount.h
|
|
* TAccount structure header file used in the program
|
|
*/
|
|
#ifndef TACCOUNT_H
|
|
#define TACCOUNT_H
|
|
|
|
#include "account.h"
|
|
|
|
/**
|
|
* @struct taccount
|
|
* @brief Struct representing an T-Account
|
|
*/
|
|
|
|
typedef struct taccount {
|
|
Account *credits; ///< credits account
|
|
Account *debits; ///< debits account
|
|
|
|
} TAccount;
|
|
|
|
|
|
#endif |