Answer from cs61c-am (Michael Moeng 16464697) for Question 1
struct string_node
{
char *name;
struct string_node *next;
};

