Skip to content

Commit 32fe2e6

Browse files
committed
The prototypes of all my functions.
1 parent 95bace7 commit 32fe2e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sort.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ typedef struct listint_s
3535
struct listint_s *next;
3636
} listint_t;
3737

38-
/* Printing helper functions */
38+
/* Printing functions */
3939
void print_array(const int *array, size_t size);
4040
void print_list(const listint_t *list);
4141

42-
/* Sorting algoritms */
42+
/* Types of Sorting Algoritms */
4343
void bubble_sort(int *array, size_t size);
4444
void insertion_sort_list(listint_t **list);
4545
void selection_sort(int *array, size_t size);

0 commit comments

Comments
 (0)