6 lines
107 B
C
6 lines
107 B
C
#ifndef SORT_H
|
|
#define SORT_H
|
|
|
|
void sort(char **a, int n, int (*cmp)(const char *, const char *));
|
|
|
|
#endif
|