12 lines
228 B
C
12 lines
228 B
C
#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
|