Skip to content

Commit 4e6c7e4

Browse files
committed
the header file to add the prototype for selection sort
1 parent 285a117 commit 4e6c7e4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

sort.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,6 @@ void bubble_sort(int *array, size_t size);
2929
/* Task #1 */
3030
void insertion_sort_list(listint_t **list);
3131

32+
/* Task #2 */
33+
void selection_sort(int *array, size_t size);
3234
#endif

0 commit comments

Comments
 (0)