#include #include typedef struct CVOR { int vr; struct CVOR *sl; }cvor; cvor* novi_cvor(int br); cvor* ubaci_na_pocetak(cvor *l, int br); void ispis(cvor *l); void oslobodi(cvor *lista);