Add the basic code structure and build system
[Project_algorithmic_C.git] / 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 */