TP 13 exo1: Implement all the required features.
[TD_C.git] / TP_13 / exo1 / lib / utils.h
CommitLineData
33b9c646
JB
1#ifndef UTILS_H
2#define UTILS_H
3
0139cafd
JB
4#include "macros.h"
5
6void swap_int(int* v1, int* v2);
33b9c646
JB
7void swap_ptr(void* v1, void* v2);
8
475ee86d
JB
9void handle_prompt_error(int errno);
10
33b9c646 11#endif /* UTILS_H */