Files
salmanoff/include/preprocessor.h
T
2025-07-22 06:48:04 -04:00

12 lines
195 B
C

#ifndef SMO_PREPROCESSOR_H
#define SMO_PREPROCESSOR_H
#define SMO_Q(x) #x
#define SMO_QUOTE(x) SMO_Q(x)
#define SMO_CONCAT(a, b) a ## b
#define SMO_UNMANGLED "C"
#endif // SMO_PREPROCESSOR_H