---------------------------------------------------------------------------------------------------
				Pobieranie MAC ADDRESS
---------------------------------------------------------------------------------------------------

procedura pobiera MAC ADDRESS komputera z systemem LINUX

int get_mac_address(const char*name_port, char*string);

przykladowe uzycie:
get_mac_address("eth0", string);
zwraca string z MAC Address w natepujacej formie: 
MC=0022683f4852
oraz
1 -jesli operacja jest poprawna
0 - jesli byl blad

---------------------------------------------------------------------------------------------------
kompilacja:
gcc -c get_mac.c

prototyp funkcji jest w header get_mac.h
