/* Modular Example */ /* Transaction.h */ /* OOP244 */ /* Jan 14 2009 */ struct Transaction { int acct; char type; double amount; }; void enter(struct Transaction* tr ); void display(struct Transaction tr );