8 lines
134 B
C
8 lines
134 B
C
#ifndef SOLVE_H
|
|
#define SOLVE_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void t4_solve(char **a, int n, int (*cmp)(const char *, const char *));
|
|
|
|
#endif
|