X-Git-Url: https://git.piment-noir.org/?p=TD_C.git;a=blobdiff_plain;f=TP_13%2Fexo1%2Flib%2Fio.c;h=b0a66a0fb1b14f4cc821a475c0a8558e9c90a44d;hp=69b13d768f2b68e4cd0a01e01f2e23ab30a8368a;hb=ac5c12a4131a461182da110ec6c50be4cbd4270e;hpb=8f8629b25f848dcf37e4786e4c3d5af60e3de37f diff --git a/TP_13/exo1/lib/io.c b/TP_13/exo1/lib/io.c index 69b13d7..b0a66a0 100644 --- a/TP_13/exo1/lib/io.c +++ b/TP_13/exo1/lib/io.c @@ -15,10 +15,10 @@ int* prompt_array(int array[], unsigned* size) { int errno = prompt_value("Taille du tableau?", (int*)size); array = create_tab(array, *size); for (unsigned i = 0; i < *size; i++) { - errno += prompt_value("Valeur?", &array[i]); + errno += prompt_value("Valeur?", &array[i]); + /* error might have occured */ + handle_prompt_error(errno); } - /* error might have occured */ - handle_prompt_error(errno); return array; } @@ -102,9 +102,14 @@ void do_resize(int array[], unsigned* old_size) { errno = prompt_value("\nNouvelle taille?", (int*)&new_size); handle_prompt_error(errno); - /* FIXME: one should able the set the array new content if new_size > *old_size - * for now, new values are zeroed */ array = resize_tab(array, *old_size, new_size); + if (new_size > *old_size) { + printf("Saisie des valeurs supplementaires du tableau\n"); + for (unsigned i = *old_size; i < new_size; i++) { + errno += prompt_value("Valeur?", &array[i]); + handle_prompt_error(errno); + } + } *old_size = new_size; }