changeset 51:8a9a7d020197

Update algorithms.h Added function prototype for merge sort committer: GitHub <noreply@github.com>
author Pietro Molendys <89810437+Pedritos22@users.noreply.github.com>
date Wed, 02 Apr 2025 01:12:40 +0200
parents 62b7c457510d
children 468f82bd24ac
files src/algorithms.h
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/algorithms.h	Wed Apr 02 00:53:34 2025 +0200
+++ b/src/algorithms.h	Wed Apr 02 01:12:40 2025 +0200
@@ -8,6 +8,7 @@
 void *selection_sort(void *arguments);
 void *quick_sort(void *arguments);
 void *insertion_sort(void *arguments);
+void *merge_sort(void *arguments);
 
 
 #endif // ALGORITHMS_H