/* Author: Susan Mitchell */ /* File : Cd.h */ #ifndef CD_H #define CD_H #include "Date.h" #define MAXSIZE_ARTIST 25 /* Maximum length for an artist string */ #define MAXSIZE_TITLE 25 /* Maximum length for a title string */ typedef struct { char* artist; char* title; Date dateReceived; int numInStock; float price; } Cd; Cd* createCd(char* artist, char* title, int month, int day, int year, int numInStock,float price); void destroyCd(Cd* aCd); void printCd(Cd* aCd); #endif