Aug
30th
Thu
30th
typedef struct node {
char line[ MAX_LENGTH ]; /* text of line */
struct node *link; /* pointer to next line */
} NODE;
I really hate overly commented code.
It is hard to read.