blob: b9e6dd7a98ac1912903965ab2c44e8f58abd8b60 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#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[]);
void update(contact* newContact[]);
void printAll();
void exit();
#endif CONTACTS_HEADER_H
|