aboutsummaryrefslogtreecommitdiff
path: root/Project1/Contacts.h
diff options
context:
space:
mode:
Diffstat (limited to 'Project1/Contacts.h')
-rw-r--r--Project1/Contacts.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Project1/Contacts.h b/Project1/Contacts.h
index a6b9497..00388dc 100644
--- a/Project1/Contacts.h
+++ b/Project1/Contacts.h
@@ -7,6 +7,7 @@
struct contact
{
+ int id = 0;
char Name[25] = {};
char Email[100] = {};
char StreetAddress[35] = {};
@@ -18,7 +19,7 @@ struct contact
int menu();
-char addNew(contact newContact);
+char addNew(contact newContact[]);
void update();