12 lines
315 B
C
12 lines
315 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
#include <inttypes.h>
|
|
|
|
long **getRawDataArray(char *rawDataFileName);
|
|
void printArrayData(long **p);
|
|
void freeArray(long **p, int N);
|
|
bool checkArrayFullyFill(long **p, int N);
|
|
double **getDoubleArray(int N, int M); |