summaryrefslogtreecommitdiff
path: root/solver.h
diff options
context:
space:
mode:
authorolivier gayot <ogayot@free.fr>2012-12-12 22:22:25 +0000
committerolivier gayot <ogayot@free.fr>2012-12-12 22:22:25 +0000
commita68838f0f6873979e3dcb2c8c8b8ef10017fefc3 (patch)
tree18622ce60a9227002134f6456173f11faae73170 /solver.h
le_compte_est_bon: implementation of the solver
Diffstat (limited to 'solver.h')
-rw-r--r--solver.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/solver.h b/solver.h
new file mode 100644
index 0000000..357cd91
--- /dev/null
+++ b/solver.h
@@ -0,0 +1,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 */