Answer from cs61c-em (Jin-Hyung Park 17762465) for Question 2
void insert_front(char *str)
{
    struct node *temp;

    temp->str = str;
 
    temp->next = head->next;
    head->next = temp;
}
