TP 13 exo2: Implement the missing bits to do a full game.
[TD_C.git] / TP_13 / exo1 / lib / utils.h
1 #ifndef UTILS_H
2 #define UTILS_H
3
4 #include "macros.h"
5
6 void swap_int(int* v1, int* v2);
7 void swap_ptr(void* v1, void* v2);
8
9 #endif /* UTILS_H */