//peek.c //John T. Rine //October 13, 2011 #include #include #include"all.h" int peek(node *tail) { if (tail == NULL) { printf("No value to peek at...\n"); exit(1); } return tail->data; }