Update data_structures/reverse_a_linked_list.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Tisha Soumya 2021-09-06 23:58:24 +05:30 committed by GitHub
parent 55de9f9ddc
commit 650a2fdc46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,8 +77,7 @@ void reverseList(Node **head) {
*head = prev; *head = prev;
} }
/** /**
* Main function: * @brief Main function
* Allows the user add ,display and reverse values from the list.
* @returns 0 on exit * @returns 0 on exit
*/ */
int main() { int main() {