#ifndef __matrix_operations_h__ #define __matrix_operations_h__ #include "main.h" #define N 4 void matrix_inverse(float(*a)[N], float(*b)[N]); #endif