summaryrefslogtreecommitdiff
path: root/solver.h
blob: 357cd91024d50564cb7a330f32af49bd8fe175fa (plain)
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(vect_t *vect, int result);

#endif /* SOLVER_H */