TP11 exo2: Add basics UI functions and integrate them is the static and
[TD_C.git] / TP_11 / exo2 / ui.h
diff --git a/TP_11/exo2/ui.h b/TP_11/exo2/ui.h
new file mode 100644 (file)
index 0000000..afb35df
--- /dev/null
@@ -0,0 +1,10 @@
+#ifndef UI_H
+#define UI_H
+
+#include "clist.h"
+
+int promptValue(const char* msg, int* result);
+void displayArray(const int array[], unsigned length);
+void displayList(link_t* head);
+
+#endif /* UI_H */