From 879fd00f3cd02c69de8c95ad7f4c660b85c84c1f Mon Sep 17 00:00:00 2001 From: "quentin.perret" Date: Wed, 8 Jun 2022 10:24:02 +0200 Subject: [PATCH] clear some comment --- .gitignore | 3 ++- Code-C/getArray.c | 9 --------- 2 files changed, 2 insertions(+), 10 deletions(-) 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); - } - */ } }