| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | /* | ||
| 2 | ** EPITECH PROJECT, 2024 | ||
| 3 | ** zappy | ||
| 4 | ** File description: | ||
| 5 | ** str_utils.c | ||
| 6 | */ | ||
| 7 | |||
| 8 | #include <stdbool.h> | ||
| 9 | #include <ctype.h> | ||
| 10 | #include <stddef.h> | ||
| 11 | |||
| 12 | 13 | bool str_is_num(const char *str) | |
| 13 | { | ||
| 14 | 46 | for (size_t i = 0; str[i]; i++) { | |
| 15 | 34 | if (!isdigit(str[i])) | |
| 16 | return false; | ||
| 17 | } | ||
| 18 | return true; | ||
| 19 | } | ||
| 20 |