2022-05-31 17:42:26 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
2022-06-03 17:02:49 +02:00
|
|
|
#include <inttypes.h>
|
2022-05-31 17:42:26 +02:00
|
|
|
|
2022-06-03 17:02:49 +02:00
|
|
|
long **getRawDataArray();
|
2022-06-07 14:28:32 +02:00
|
|
|
void printArrayData(long** p, int N, int M);
|
|
|
|
void freeArray(long **p, int N);
|
|
|
|
int checkArrayFullyFill(long **p, int N , int M);
|