Answer from cs61c-ce (aretha samuel 15797004) for Question 1
struct nlist {
    struct nlist *next;
    char *head;
    char *name;
};
