21 lines
450 B
C
21 lines
450 B
C
#ifndef __SMCC_CORE_H__
|
|
#define __SMCC_CORE_H__
|
|
|
|
#include <core_mem.h>
|
|
#include <core_impl.h>
|
|
#include <core_macro.h>
|
|
|
|
#define __SMCC_LOG_NO_STD_IMPL__
|
|
#define log_snprintf smcc_snprintf
|
|
#define log_printf smcc_eprintf
|
|
#define log_exit smcc_exit
|
|
#include <log.h>
|
|
|
|
#define _SMCC_STR(str) #str
|
|
#define SMCC_STR(str) _SMCC_STR(str)
|
|
|
|
#define SMCC_ARRLEN(arr) (sizeof(arr) / sizeof(arr[0]))
|
|
#include <core_str.h>
|
|
|
|
#endif // __SMCC_CORE_H__
|