1 2 3 4 5 6 7 8 9 10 11
#ifndef SOLVER_H #define SOLVER_H typedef struct { int *array; unsigned len; } vect_t; void solve(const vect_t *vect, int result); #endif /* SOLVER_H */