diff --git a/src/calibration.c b/src/calibration.c index 52a1602..689a738 100644 --- a/src/calibration.c +++ b/src/calibration.c @@ -24,6 +24,11 @@ static char parse_digit(char *line, Node *digits_tree) { } */ +/** + * Lire tous les caractères d'une ligne : + * - Au premier chiffre, qu'il soit tel quel ou écrit en toutes lettres, le retourner + * - Si aucun chiffre n'a été trouvé, retourner 0 + */ static char first_digit(char *line) { while (*line != '\0' && !isdigit(*line)) { line++;