GCC Code Coverage Report


Directory: ./
File: lib/my/my_printf/flag_bigd.c
Date: 2024-06-05 00:36:48
Exec Total Coverage
Lines: 2 2 100.0%
Functions: 1 1 100.0%
Branches: 0 0 -%

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 * @file flag_bigd.c
9 * @brief The file containing the flag_bigd function
10 * @author Nicolas TORO
11 */
12
13 #include "myprintf.h"
14
15 1 int flag_bigd(va_list list, formating_t *formating)
16 {
17 1 return 0;
18 }
19