I have the following C header file:
#ifndef __MATRIX_H__ #define __MATRIX_H__ struct matrix_t { uint8_t col1; uint8_t col2; uint8_t col3; }; ext