GCC Code Coverage Report


Directory: ./
File: lib/my/my_strlen.c
Date: 2024-06-05 02:24:39
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 55038 int my_strlen(char const *str)
16 {
17 55038 int len = 0;
18
19
2/2
✓ Branch 0 taken 6 times.
✓ Branch 1 taken 55032 times.
55038 if (str == NULL)
20 6 return 0;
21
2/2
✓ Branch 0 taken 624979 times.
✓ Branch 1 taken 55032 times.
680011 while (str[len] != '\0')
22 624979 len = len + 1;
23 55032 return len;
24 }
25