#ifndef LIST_HEADER
#define LIST_HEADER

struct list {
	int value;
	struct list *next;
	
};

#endif
