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

11 lines
313 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-10 17:22:01 +02:00
long **getRawDataArray(char *rawDataFileName, int N , int M);
2022-06-07 14:28:32 +02:00
void printArrayData(long** p, int N, int M);
void freeArray(long **p, int N);
2022-06-09 17:56:45 +02:00
bool checkArrayFullyFill(long **p, int N , int M);