Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | ** EPITECH PROJECT, 2023 | ||
3 | ** my_str_isnum | ||
4 | ** File description: | ||
5 | ** Returns 1 if the string (str) contains only numerical characters | ||
6 | */ | ||
7 | /** | ||
8 | * @file my_str_isnum.c | ||
9 | * @brief The file containing the my_str_isnum function | ||
10 | * @author Nicolas TORO | ||
11 | */ | ||
12 | |||
13 | #include "my.h" | ||
14 | |||
15 | 3 | int my_str_isnum(char const *str) | |
16 | { | ||
17 |
2/2✓ Branch 1 taken 1 times.
✓ Branch 2 taken 2 times.
|
3 | if (my_strlen(str) == 0) |
18 | 1 | return 1; | |
19 |
2/2✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
|
5 | for (int i = 0; i < my_strlen(str); i++) { |
20 |
3/4✓ Branch 0 taken 4 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 1 times.
✓ Branch 3 taken 3 times.
|
4 | if (str[i] < '0' || str[i] > '9') |
21 | 1 | return 0; | |
22 | } | ||
23 | 1 | return 1; | |
24 | } | ||
25 |