Answer from cs61c-el (David Tung 16479725) for Question 1
struct lnode {
    char *string;
    lnode *next;
};
