2nd_Sem_Bogachev/2025.02.28/Example/sort.h
2025-03-02 14:38:34 +03:00

6 lines
107 B
C

#ifndef SORT_H
#define SORT_H
void sort(char **a, int n, int (*cmp)(const char *, const char *));
#endif