aboutsummaryrefslogtreecommitdiff
path: root/Project1/Contacts.h
diff options
context:
space:
mode:
Diffstat (limited to 'Project1/Contacts.h')
-rw-r--r--Project1/Contacts.h18
1 files changed, 16 insertions, 2 deletions
diff --git a/Project1/Contacts.h b/Project1/Contacts.h
index bf58cf2..a6b9497 100644
--- a/Project1/Contacts.h
+++ b/Project1/Contacts.h
@@ -1,9 +1,24 @@
#ifndef CONTACTS_HEADER_H
#define CONTACTS_HEADER_H
+
+
// functions
-char addNew();
+struct contact
+{
+ char Name[25] = {};
+ char Email[100] = {};
+ char StreetAddress[35] = {};
+ char City[30] = {};
+ char State[2] = {};
+ int Zip = 0;
+};
+
+
+int menu();
+
+char addNew(contact newContact);
void update();
@@ -11,5 +26,4 @@ void printAll();
void exit();
-
#endif CONTACTS_HEADER_H \ No newline at end of file