Advertisement
KAR98S

node.c

Apr 23rd, 2021
699
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.15 KB | None | 0 0
  1. #include "node.h"
  2.  
  3. PNODE getNextNode(PNODE head) {
  4.     return((head == NULL) ? NULL : head->next);
  5. }
  6.  
  7. PNODE getNewNode(){
  8.     return calloc(1, NODESIZE);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement