sys-prog-coursework-lab-4/sort.h

7 lines
140 B
C
Raw Normal View History

2024-12-27 17:32:59 +02:00
#ifndef SORT_H
#define SORT_H
2024-12-27 17:32:59 +02:00
#include <cstddef>
void swap(char** a, char** b);
void quick_sort(char** arr, size_t length);
2024-12-27 17:32:59 +02:00
#endif //SORT_H