#ifndef MACIERZ_H #define MACIERZ_H float ** utworz_macierz(int w, int k); float ** wczytaj_macierz(float **m, int w, int k); void wyswietl_macierz(float **m, int w, int k); void zwolnij_macierz(float **m, int w); #endif