Add the basic code structure and build system
[Project_algorithmic_C.git] / lib / ui.h
diff --git a/lib/ui.h b/lib/ui.h
new file mode 100644 (file)
index 0000000..2915078
--- /dev/null
+++ b/lib/ui.h
@@ -0,0 +1,27 @@
+/*
+ * =====================================================================================
+ *
+ *       Filename:  ui.h
+ *
+ *    Description:  Header for user interface routines 
+ *
+ *        Version:  1.0
+ *        Created:  15/03/2017 20:07:12
+ *       Revision:  none
+ *       Compiler:  gcc
+ *
+ *         Author:  Jerome Benoit (fraggle), jerome.benoit@piment-noir.org
+ *   Organization:  Piment Noir
+ *
+ * =====================================================================================
+ */
+
+#ifndef UI_H
+#define UI_H
+
+/* ncurses printing */
+void print_board(int y, int x);
+
+/* non ncurses printing */
+
+#endif /* UI_H */