1
0
Fork 0
C_lib/sorting_algorithms/bubble_sort/bubble_sort.h

8 lines
273 B
C

/* This header defines the function for bubble sort. */
#ifndef BUBBLE_SORT_H
#define BUBBLE_SORT_H
/* Function definitions. */
void* bubble_sort(void* array, int (*comparison_function)(const void*, const void*), const int length, size_t size);
#endif /* BUBBLE_SORT_H */