TP 13 exo2: Add the code structure and some basic displaying routines for the tic...
[TD_C.git] / TP_13 / exo2 / lib / display.h
diff --git a/TP_13/exo2/lib/display.h b/TP_13/exo2/lib/display.h
new file mode 100644 (file)
index 0000000..f0b1136
--- /dev/null
@@ -0,0 +1,26 @@
+/*
+ * =====================================================================================
+ *
+ *       Filename:  display.h
+ *
+ *    Description:  Headers for display 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 DISPLAY_H
+#define DISPLAY_H
+
+void print_board(int y, int x);
+void print_x(int y, int x);
+void print_o(int y, int x);
+
+#endif /* DISPLAY_H */