aboutsummaryrefslogtreecommitdiff
path: root/includes/nqueens.h
diff options
context:
space:
mode:
Diffstat (limited to 'includes/nqueens.h')
-rw-r--r--includes/nqueens.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/includes/nqueens.h b/includes/nqueens.h
new file mode 100644
index 00000000..a4be93f0
--- /dev/null
+++ b/includes/nqueens.h
@@ -0,0 +1,13 @@
+/*
+ * N-Queens Problem Solver
+ * Found somewhere on the Internet; can't remember where. Possibly Wikipedia.
+ */
+#ifndef __NQUEENS_H__
+#define __NQUEENS_H__
+
+int nqueens(int y);
+
+
+#endif /* __NQUEENS_H__ */
+
+