clear some comment

This commit is contained in:
quentin.perret 2022-06-08 10:24:02 +02:00
parent 7588cc5d21
commit 879fd00f3c
2 changed files with 2 additions and 10 deletions

3
.gitignore vendored
View file

@ -1,3 +1,4 @@
*.TXT
*.png
*.exe
*.exe
*.csv

View file

@ -34,15 +34,6 @@ void fillRawData(long** p, int N, int M) {
j++;
}
//printf("\n\n");
/*
for(j = 1 ; j < M ; j++){
token = strtok(NULL, ","); // séparation valeur par virgule : csv
if(token == NULL) break; // condition d'arrêt de la séparartion
p[i][j] = atoi(token); //transtypage char to int
//printf(token);
}
*/
}
}