fixed indentation

This commit is contained in:
celso 2023-01-09 14:12:31 -03:00
parent bd6c89c824
commit cce5e02ed9
1 changed files with 4 additions and 4 deletions

View File

@ -69,10 +69,10 @@ int splitc_toi(char *line, int sep, int *dest){
i++;
continue;
}
temp[0] = line[i];
dest[j] = atoi(temp);
i++;
j++;
temp[0] = line[i];
dest[j] = atoi(temp);
i++;
j++;
}
return j;
}