/**************************************************************************** * list1.h * * Computer Science 50 * David J. Malan * * Defines a node for a linked list of integers. ***************************************************************************/ typedef struct _node { int n; struct _node *next; } node;