Not a member of Pastebin yet?
                        Sign Up,
                        it unlocks many cool features!                    
                - #ifndef node_h
- #define node_h
- #include "all.h"
- typedef struct _NODE {
- int data;
- struct _NODE* next;
- }NODE,*PNODE;
- #define NODESIZE (sizeof(struct _NODE))
- PNODE getNextNode(PNODE);
- PNODE getNewNode();
- #endif
Advertisement
 
                    Add Comment                
                
                        Please, Sign In to add comment                    
                 
                    