diff options
| author | Connor McDowell <[email protected]> | 2024-02-19 19:55:46 -0800 |
|---|---|---|
| committer | Connor McDowell <[email protected]> | 2024-02-19 19:55:46 -0800 |
| commit | 599c5b9fddb1fdf72946379ea345977778e7753b (patch) | |
| tree | 2a63f13fba6f6b66597be3b145d87253d2695214 /Project1/Contacts.h | |
| parent | still testing the doubling. (diff) | |
| download | archived-homework-6-connormcdowell275-599c5b9fddb1fdf72946379ea345977778e7753b.tar.xz archived-homework-6-connormcdowell275-599c5b9fddb1fdf72946379ea345977778e7753b.zip | |
i love it when i have a fuckin workin program but then oooo you have to double it and nOTHING WORKS anymore. ive been doin this shit all fuckin weekend i havent seen the sun in days.
Diffstat (limited to 'Project1/Contacts.h')
| -rw-r--r-- | Project1/Contacts.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Project1/Contacts.h b/Project1/Contacts.h index d44e6c5..32da79c 100644 --- a/Project1/Contacts.h +++ b/Project1/Contacts.h @@ -7,7 +7,7 @@ struct contact { - int id = 0; + size_t id = 0; int count = 0; char Name[25]{}; char Email[100]{}; @@ -26,7 +26,7 @@ char addNew(contact newContact[], size_t MAX, size_t t); void update(contact newContact[], size_t MAX); -void printAll(contact newContact[], size_t MAX); +void printAll(contact newContact[], size_t MAX, size_t Cont_list_lenth); void contact_double(contact*& newContact, size_t MAX, size_t t); |