GCC Code Coverage Report


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

Line Branch Exec Source
1 /*
2 ** EPITECH PROJECT, 2023
3 ** my_char_is_num
4 ** File description:
5 ** Returns 1 if the characters (c) is a number or 0 if not
6 */
7 /**
8 * @file my_char_is_num.c
9 * @brief The file containing the my_char_is_num function
10 * @author Nicolas TORO
11 */
12
13 #include "my.h"
14
15 136 int my_char_is_num(char c)
16 {
17
4/4
✓ Branch 0 taken 87 times.
✓ Branch 1 taken 49 times.
✓ Branch 2 taken 66 times.
✓ Branch 3 taken 21 times.
136 if (c >= '0' && c <= '9')
18 66 return 1;
19 70 return 0;
20 }
21