aboutsummaryrefslogtreecommitdiff
path: root/Project1/Contacts.h
diff options
context:
space:
mode:
Diffstat (limited to 'Project1/Contacts.h')
-rw-r--r--Project1/Contacts.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Project1/Contacts.h b/Project1/Contacts.h
index a6a0691..51f5620 100644
--- a/Project1/Contacts.h
+++ b/Project1/Contacts.h
@@ -13,7 +13,7 @@ struct contact
char Email[100]{};
char StreetAddress[35]{};
char City[30]{};
- char State[5]{};
+ char State[3]{};
int Zip = 0;
};
@@ -22,12 +22,12 @@ struct contact
int menu();
-char addNew(contact newContact[], size_t MAX, int t);
+char addNew(contact newContact[], size_t MAX, size_t t);
void update(contact newContact[], size_t MAX);
void printAll(contact newContact[], size_t MAX);
-//char contact_double(contact*& newContact, size_t MAX, int t);
+char contact_double(contact*& newContact, size_t MAX, size_t t);
#endif CONTACTS_HEADER_H \ No newline at end of file