Using the ValgrindLinkedListLabSolution, you are to write a function lstReverse that reverses the links of a singly linked list. You are to pass in a list and return a list with the links reversed. Test your function with the following call:

    //TODO 6.
    lstPrint (lstReverse (&sTheList));