1 2 3 4 5 6 7 8 9
#ifndef NODE_H #define NODE_H typedef struct node { struct node *next; void *data; } Node; #endif