Advertisement
KAR98S

node.h

Apr 23rd, 2021
735
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #ifndef node_h
  2. #define node_h
  3.  
  4. #include "all.h"
  5.  
  6. typedef struct _NODE {
  7.     int data;
  8.     struct _NODE* next;
  9. }NODE,*PNODE;
  10.  
  11. #define NODESIZE (sizeof(struct _NODE))
  12.  
  13. PNODE getNextNode(PNODE);
  14. PNODE getNewNode();
  15.  
  16. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement