Advertisement
Smudla

Untitled

Dec 28th, 2014
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.32 KB | None | 0 0
  1. tSvet* vytvorSvet(){    /*definice funkce vytvorSvet(), alokuje pamet, dekladace a popis v Svet.h*/
  2.     tSvet* svet;
  3.     svet = (tSvet*)malloc(sizeof(tSvet));
  4.     svet ->poleSouhvezdi=(char**)malloc(sizeof(char*)*(POCETSOUHVEZDI));
  5.     svet ->zprava=(char*)malloc(sizeof(char));
  6.     svet->cisloSveta =NULL;
  7.     svet->next = NULL;
  8.     return svet;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement