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