Folder name Change

This commit is contained in:
Quentin Perret 2023-05-29 14:42:46 +02:00
parent 8798202171
commit ec3c985534
12 changed files with 31 additions and 30 deletions

View file

@ -21,5 +21,6 @@
"queue.h": "c", "queue.h": "c",
"growthrate.h": "c", "growthrate.h": "c",
"stdbool.h": "c" "stdbool.h": "c"
} },
"cmake.configureOnOpen": false
} }

View file

@ -1,7 +1,7 @@
#include "include/getArray.h" #include "include/getArray.h"
#include "include/fileGestion.h" #include "include/fileGestion.h"
#include "include/initialParameters.h" #include "include/initialParameters.h"
//#include <string.h> // #include <string.h>
long **getlongArray(int N, int M) /* Allocate the array */ long **getlongArray(int N, int M) /* Allocate the array */
{ {
@ -27,11 +27,11 @@ double **getDoubleArray(int N, int M) /* Allocate the array */
void fillArrayWithRawData(char *rawDataFileName, long **p, int N, int M) void fillArrayWithRawData(char *rawDataFileName, long **p, int N, int M)
{ {
int i = 0, j; int i = 0;
char *buffer; // char *buffer;
size_t bufsize = 200; // size_t bufsize = 200;
buffer = (char *)malloc(bufsize * sizeof(char)); // buffer = (char *)malloc(bufsize * sizeof(char));
char *token; // char *token;
FILE *f = fopen(rawDataFileName, "r"); FILE *f = fopen(rawDataFileName, "r");