diff options
Diffstat (limited to 'Project1/Contacts.h')
| -rw-r--r-- | Project1/Contacts.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Project1/Contacts.h b/Project1/Contacts.h index 841233d..60e4dcb 100644 --- a/Project1/Contacts.h +++ b/Project1/Contacts.h @@ -21,11 +21,11 @@ struct contact int menu(); -char addNew(contact newContact, size_t MAX); +char addNew(contact newContact[], size_t MAX); -void update(contact newContact, size_t MAX); +void update(contact newContact[], size_t MAX); -void printAll(contact newContact, size_t MAX); +void printAll(contact newContact[], size_t MAX); |