summaryrefslogtreecommitdiff
path: root/src/02/03/node.h
blob: 88964cd2886676ef690ef6dc02993ce94b355a3a (plain)
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