Skip to content
Snippets Groups Projects
Commit d9dd6580 authored by iliya.saroukha's avatar iliya.saroukha
Browse files

formatter doing some wizardry

parent 54814674
No related branches found
No related tags found
No related merge requests found
#include <vec.h>
#include <libgen.h> #include <libgen.h>
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <stdint.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <vec.h>
#define NB_OPTIONS 6 #define NB_OPTIONS 6
void print_menu(void) { void print_menu(void) {
...@@ -89,8 +89,8 @@ int main(int argc, char **argv) { ...@@ -89,8 +89,8 @@ int main(int argc, char **argv) {
"Specify the number you wish to push into the vector: "); "Specify the number you wish to push into the vector: ");
scanf("%ld", &to_push); scanf("%ld", &to_push);
fprintf(
fprintf(stdout, stdout,
"Specify the index at which you wish to insert the number: "); "Specify the index at which you wish to insert the number: ");
scanf("%zu", &idx_to_insert); scanf("%zu", &idx_to_insert);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment