| 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 | 35 | int my_char_is_num(char c) | |
| 16 | { | ||
| 17 |
3/4✓ Branch 0 taken 4 times.
✓ Branch 1 taken 31 times.
✓ Branch 2 taken 4 times.
✗ Branch 3 not taken.
|
35 | if (c >= '0' && c <= '9') |
| 18 | 4 | return 1; | |
| 19 | 31 | return 0; | |
| 20 | } | ||
| 21 |