summaryrefslogtreecommitdiff
path: root/solver.h
diff options
context:
space:
mode:
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 */