8 lines
194 B
C
8 lines
194 B
C
#ifndef MATRIX_H
|
|
#define MATRIX_H
|
|
|
|
int ***build_matrix(int nx, int ny, int nz);
|
|
void print_matrix(int ***matrix, int nx, int ny, int nz);
|
|
void free_matrix(int ***matrix, int ny, int nz);
|
|
|
|
#endif |