diff --git a/.gitignore b/.gitignore index 98bc96a..82c75b8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *.TXT *.png -*.exe \ No newline at end of file +*.exe +*.csv \ No newline at end of file diff --git a/Code-C/getArray.c b/Code-C/getArray.c index 4b7e38b..07ce2ed 100644 --- a/Code-C/getArray.c +++ b/Code-C/getArray.c @@ -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); - } - */ } }