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