GCC Code Coverage Report


Directory: ./
File: lib/my/my_array_len.c
Date: 2024-06-05 00:36:48
Exec Total Coverage
Lines: 7 7 100.0%
Functions: 1 1 100.0%
Branches: 4 4 100.0%

Line Branch Exec Source
1 /*
2 ** EPITECH PROJECT, 2023
3 ** my_array_len
4 ** File description:
5 ** Returns the lengths of an array (array) which finish with a NULL value
6 */
7 /**
8 * @file my_array_len.c
9 * @brief The file containing the my_array_len function
10 * @author Nicolas TORO
11 */
12
13 #include "my.h"
14
15 3314 int my_array_len(void **array)
16 {
17 3314 int len = 0;
18
19
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 3313 times.
3314 if (array == NULL)
20 1 return 0;
21
2/2
✓ Branch 0 taken 19046 times.
✓ Branch 1 taken 3313 times.
22359 while (array[len] != NULL)
22 19046 len = len + 1;
23 3313 return len;
24 }
25