typedef struct el{ int br; struct el *sl; } EL; EL* novi(int br); EL* dodaj(EL *pl, int br); void ispisi(EL *pl); EL* obrisi_it(EL *pl); EL* obrisi_rek(EL *pl); EL* ucitaj();