Files
salmanoff/include/preprocessor.h
T

12 lines
195 B
C
Raw Normal View History

2025-07-22 06:48:04 -04:00
#ifndef SMO_PREPROCESSOR_H
#define SMO_PREPROCESSOR_H
2025-07-22 06:48:04 -04:00
#define SMO_Q(x) #x
#define SMO_QUOTE(x) SMO_Q(x)
2025-07-22 06:48:04 -04:00
#define SMO_CONCAT(a, b) a ## b
2025-07-22 06:48:04 -04:00
#define SMO_UNMANGLED "C"
2025-07-22 06:48:04 -04:00
#endif // SMO_PREPROCESSOR_H