mod00 ready for correction

This commit is contained in:
hugo LAMY
2025-03-08 21:24:17 +01:00
parent fe0e7fa223
commit 681e0dfa5e
9 changed files with 144 additions and 169 deletions

12
module00/ex04/utils.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef UTILS_H
#define UTILS_H
// Stringify
#define STRINGIFY_HELPER(x) #x
#define STRINGIFY(x) STRINGIFY_HELPER(x)
// Concatenate
#define CONCAT_HELPER(x, y) x ## y
#define CONCAT(x, y) CONCAT_HELPER(x, y)
#endif // UTILS_H