7 lines
140 B
C
7 lines
140 B
C
#ifndef SORT_H
|
|
#define SORT_H
|
|
#include <cstddef>
|
|
void swap(char** a, char** b);
|
|
void quick_sort(char** arr, size_t length);
|
|
#endif //SORT_H
|