ECS 40 Fall 1996 Homework #5 TESTLL(1) NAME testll - test the linked list functions SYNOPSIS testll DESCRIPTION Testll allows a programmer to test the linked list functions insert, delete, prforw, and prback, which are to be debugged for problem 5 on homework 5. This program takes commands as input; the commands are: d n delete the integer n from the linked list; h print a help message; i n insert the number n into the linked list, in order; p print the elements of the linked list; and r print the elements of the list in reverse order. EXAMPLES % testll > i 3 > i 5 > i 4 > p 3 4 5 > r 5 4 3 > d 4 > p 3 5 and so forth. BUGS The input line is limited to 1023 characters. If the character for the command is not typed in column 1, you will get an error message. AUTHOR Matt Bishop (bishop@cs.ucdavis.edu) 1 99