#ifndef CONTACTS_HEADER_H #define CONTACTS_HEADER_H // functions struct contact { int id = 0; char Name[25] = {}; char Email[100] = {}; char StreetAddress[35] = {}; char City[30] = {}; char State[2] = {}; int Zip = 0; }; int menu(); char addNew(contact* newContact, size_t MAX); void update(contact* newContact, size_t MAX); void printAll(contact newContact, size_t MAX); #endif CONTACTS_HEADER_H