Finally terminated additional typedef

This commit is contained in:
Tobias Grampp 2025-11-20 16:36:18 +01:00
parent ed304e3e60
commit 94a69b0068

View File

@ -5,13 +5,6 @@
// TODO Matrix-Funktionen implementieren
typedef struct Matrix{
unsigned int rows;
unsigned int cols;
MatrixType* buffer;
}Matrix;
Matrix createMatrix(unsigned int rows, unsigned int cols)
{
Matrix newMatrix;