Advertisement
Smudla

Untitled

Dec 28th, 2014
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.39 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 = ? ? ? ? ;
  14.         aktualniSvet = ? ? ? ? ;
  15.     }
  16.  
  17. }
  18. puts(seznamSvetu->nazevSveta);
  19. fclose(file);
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement