GCC Code Coverage Report


Directory: ./
File: lib/my/my_strlen.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_strlen
4 ** File description:
5 ** Returns the length of a string (str)
6 */
7 /**
8 * @file my_strlen.c
9 * @brief The file containing the my_strlen function
10 * @author Nicolas TORO
11 */
12
13 #include "my.h"
14
15 1553360 int my_strlen(char const *str)
16 {
17 1553360 int len = 0;
18
19
2/2
✓ Branch 0 taken 32718 times.
✓ Branch 1 taken 1520642 times.
1553360 if (str == NULL)
20 32718 return 0;
21
2/2
✓ Branch 0 taken 16415805 times.
✓ Branch 1 taken 1520642 times.
17936447 while (str[len] != '\0')
22 16415805 len = len + 1;
23 1520642 return len;
24 }
25