Jessta Roll RSS

Archive

Aug
30th
Thu
permalink

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.