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 df5416e..76b66cf 100644 --- a/Project1/Contacts.h +++ b/Project1/Contacts.h @@ -19,11 +19,11 @@ struct contact int menu(); -char addNew(contact* newContact[]); +char addNew(contact* newContact, size_t MAX); -void update(contact* newContact[]); +void update(contact* newContact, size_t MAX); -void printAll(contact* newContact[]); +void printAll(contact newContact, size_t MAX); |