diff --git a/vec_test.c b/vec_test.c index aeaeb94857d4cf407a60fe4da3f664f90148ef03..56e5961aa41204d0d25e6a6aa5874a3d16d9f2ce 100644 --- a/vec_test.c +++ b/vec_test.c @@ -1,9 +1,9 @@ -#include <vec.h> #include <libgen.h> #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> +#include <vec.h> #define NB_OPTIONS 6 void print_menu(void) { @@ -89,9 +89,9 @@ int main(int argc, char **argv) { "Specify the number you wish to push into the vector: "); scanf("%ld", &to_push); - - fprintf(stdout, - "Specify the index at which you wish to insert the number: "); + fprintf( + stdout, + "Specify the index at which you wish to insert the number: "); scanf("%zu", &idx_to_insert); vec_insert_at(new_vec, to_push, idx_to_insert);