Update sorting/selection_sort_recursive.c

This commit is contained in:
David Leal 2021-02-24 13:16:56 -06:00 committed by GitHub
parent 50cb5835a1
commit 1e44e27a99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,7 +73,8 @@ void selectionSort(int *arr, const int size)
}
/**
* Test function
* @brief Self-test implementations
* @returns void
*/
static void test()
{