#ifndef _SLOWNIK_H #define _SLOWNIK_H struct wezel { char *slowo ; int ilosc; struct wezel *lewo; struct wezel *prawo; }; struct wezel * dodaj(struct wezel *w,char *slowo); void wyswietl(struct wezel *w); void usun(struct wezel *w); #endif