core-legacy/include/macros.h

7 lines
133 B
C
Raw Normal View History

2020-08-24 13:59:46 +00:00
#ifndef CORE_MACROS_H
#define CORE_MACROS_H
2020-05-20 23:33:18 +00:00
#define STRLEN(s) ((sizeof(s)/sizeof(s[0])) - sizeof(s[0]))
2020-08-24 13:59:46 +00:00
#endif /* CORE_MACROS_H */