/**************************************************************************** * 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;