From 5c17bf68372b1f01be06563ef52ed694ce10e7d5 Mon Sep 17 00:00:00 2001 From: Soikk <76824648+Soikk@users.noreply.github.com> Date: Wed, 24 Aug 2022 17:56:19 +0200 Subject: [PATCH] Removed placeholder function --- matrix.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/matrix.c b/matrix.c index 3b915eb..474772e 100644 --- a/matrix.c +++ b/matrix.c @@ -1,15 +1,6 @@ #include "matrix.h" -void showMatrix(matrix *m){ - for(int i = 0; i < m->rows; ++i){ - for(int j = 0; j < m->cols; ++j){ - printf("%.1f\t", m->data[i][j]); - } - printf("\n"); - } -} - matrix *newMatrix(int rows, int cols){ matrix *m = malloc(sizeof(matrix)); m->rows = rows; -- 2.39.5