static struct seznam *obrni(p) struct seznam *p; { struct seznam *obrat=NULL; struct seznam *q; while (p!=NULL) { q=p; /*prvi el. nepregl. sez*/ p=p->nasl;/*premaknemo se*/ q->nasl=obrat;/*prestavimo el.*/ obrat=q; /*pove�amo pregl. Del*/ } return obrat; }