Files
scc/runtime/libcore/include/core_macro.h
2025-11-20 11:22:37 +08:00

10 lines
216 B
C

#ifndef __SMCC_CORE_MACRO_H__
#define __SMCC_CORE_MACRO_H__
#define _SMCC_STR(str) #str
#define SMCC_STR(str) _SMCC_STR(str)
#define SMCC_ARRLEN(arr) (sizeof(arr) / sizeof(arr[0]))
#endif // __SMCC_CORE_MACRO_H__