calibration : ajout commentaire fonction first_digit
This commit is contained in:
parent
03d08bc883
commit
7f6c9398fd
1 changed files with 5 additions and 0 deletions
|
@ -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) {
|
static char first_digit(char *line) {
|
||||||
while (*line != '\0' && !isdigit(*line)) {
|
while (*line != '\0' && !isdigit(*line)) {
|
||||||
line++;
|
line++;
|
||||||
|
|
Reference in a new issue