TP 13 exo2: Add the code structure and some basic displaying routines for the tic...
[TD_C.git] / TP_13 / exo2 / lib / utils.h
diff --git a/TP_13/exo2/lib/utils.h b/TP_13/exo2/lib/utils.h
new file mode 100644 (file)
index 0000000..03f1226
--- /dev/null
@@ -0,0 +1,9 @@
+#ifndef UTILS_H
+#define UTILS_H
+
+#include "macros.h"
+
+void swap_int(int* v1, int* v2);
+void swap_ptr(void* v1, void* v2);
+
+#endif /* UTILS_H */