10 lines
216 B
C
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__
|