
#ifndef MATRIX_H
#define MATRIX_H

/* Function prototypes */
void make_full_matrices(/* PARAMETERS */);
void allocate_matrices(/* PARAMETERS */);
void reset_matrices(/* PARAMETERS */);
void destroy_matrices(/* PARAMETERS */);
void matrix_mult(/* PARAMETERS */);

#endif /* MATRIX_H */

