diff options
| author | Connor McDowell <[email protected]> | 2024-02-18 14:10:00 -0800 |
|---|---|---|
| committer | Connor McDowell <[email protected]> | 2024-02-18 14:10:00 -0800 |
| commit | 0701f875cc5cf358b644dd9b53f462d12968ea7d (patch) | |
| tree | 8b06381c8a96214471c3f94a566c16c2a699fe31 /Project1/Contacts.h | |
| parent | couts added to help guide inputs (WIP) (diff) | |
| download | homework-5-connormcdowell275-0701f875cc5cf358b644dd9b53f462d12968ea7d.tar.xz homework-5-connormcdowell275-0701f875cc5cf358b644dd9b53f462d12968ea7d.zip | |
still sorting out errors
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); |