Advertisement
Guest User

Untitled

a guest
Dec 1st, 2017
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. void polacz(Lista *L,Lista *M)
  2. {
  3. if(L->pierwszy && M->pierwszy)
  4. {
  5. L->ostatni->nast=M->pierwszy;
  6. M->pierwszy->pop=L->ostatni;
  7. L->ostatni=M->ostatni;
  8. L->ilosc+=M->ilosc;
  9. Wyzeruj(M);
  10. }
  11. if(M->pierwszy == NULL)
  12. {
  13.  
  14. }
  15. if(L->pierwszy == NULL)
  16. {
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement