1 #ifndef __CLC_UTILS_H_
2 #define __CLC_UTILS_H_
3 
4 #define __CLC_CONCAT(x, y) x ## y
5 #define __CLC_XCONCAT(x, y) __CLC_CONCAT(x, y)
6 
7 #define __CLC_STR(x) #x
8 #define __CLC_XSTR(x) __CLC_STR(x)
9 
10 #endif
11