kalo93

Untitled

Feb 4th, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. celula* cria_celula(void)
  2. {
  3. celula *nova;
  4.  
  5. nova = (celula*)malloc( sizeof(celula) );
  6.  
  7. if(nova != NULL)
  8. {
  9. nova->prox = NULL;
  10. nova->nome[0] = '\0';
  11. nova->cc[0] = '\0';
  12. nova->date[0] = '\0';
  13. nova->cod = -1;
  14. }
  15.  
  16. return nova;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment