Traitement-signal-plantes/Code-C/getArray.h

12 lines
315 B
C
Raw Normal View History

2022-05-31 17:42:26 +02:00
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <stdlib.h>
2022-06-09 17:56:45 +02:00
#include <stdbool.h>
2022-06-03 17:02:49 +02:00
#include <inttypes.h>
2022-05-31 17:42:26 +02:00
2022-06-14 18:01:52 +02:00
long **getRawDataArray(char *rawDataFileName);
2022-06-24 18:30:58 +02:00
void printArrayData(long **p);
2022-06-07 14:28:32 +02:00
void freeArray(long **p, int N);
2022-06-21 17:47:27 +02:00
bool checkArrayFullyFill(long **p, int N);
2022-06-16 14:35:02 +02:00
double **getDoubleArray(int N, int M);