GCC Code Coverage Report


Directory: ./
File: lib/my/my_str_isprintable.c
Date: 2024-06-05 00:29:21
Exec Total Coverage
Lines: 7 7 100.0%
Functions: 1 1 100.0%
Branches: 7 8 87.5%

Line Branch Exec Source
1 /*
2 ** EPITECH PROJECT, 2023
3 ** my_str_isprintable
4 ** File description:
5 ** check if the char in argument is printable
6 */
7
8 #include "my.h"
9
10 3 int my_str_isprintable(char const *str)
11 {
12
2/2
✓ Branch 1 taken 1 times.
✓ Branch 2 taken 2 times.
3 if (my_strlen(str) == 0)
13 1 return 1;
14
2/2
✓ Branch 1 taken 7 times.
✓ Branch 2 taken 1 times.
8 for (int i = 0; i < my_strlen(str); i++) {
15
3/4
✓ Branch 0 taken 6 times.
✓ Branch 1 taken 1 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 6 times.
7 if (str[i] < 32 || str[i] == 127)
16 1 return 0;
17 }
18 1 return 1;
19 }
20