Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | ** EPITECH PROJECT, 2023 | ||
3 | ** my_printf | ||
4 | ** File description: | ||
5 | ** Flag to print a %d (an int) | ||
6 | */ | ||
7 | |||
8 | #include <stdarg.h> | ||
9 | #include "my.h" | ||
10 | #include "mylist.h" | ||
11 | #include "myformats.h" | ||
12 | |||
13 | 1 | int flag_bigd(va_list list, formating_t *formating) | |
14 | { | ||
15 | 1 | return 0; | |
16 | } | ||
17 |