Advertisement
Smudla

Untitled

Dec 28th, 2014
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.34 KB | None | 0 0
  1.     }   if (prvni == true){
  2.         seznamSvetu = vytvorKopii(svet);
  3.         prvni = false;
  4.     }
  5.     else{
  6.         if ((seznamSvetu->next == NULL) && (svet != seznamSvetu)){
  7.             seznamSvetu->next = vytvorKopii(svet);
  8.         }
  9.         if (aktualniSvet == NULL){
  10.             aktualniSvet = vytvorKopii(seznamSvetu);
  11.         }
  12.  
  13.         aktualniSvet->next = svet;
  14.         aktualniSvet = aktualniSvet->next;
  15.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement