ciabatta/inc/_macros.h

16 lines
233 B
C
Raw Normal View History

2022-06-02 23:41:48 +00:00
#pragma once
#define _str_(x) #x
#define _str(x) _str_(x)
2022-06-06 04:57:25 +00:00
#define _con(a,b) a ## b
2022-06-02 23:41:48 +00:00
#if !defined(_func)
#if defined(_compiler_msvc)
#define _func __FUNCTION__
#else
#define _func __func__
#endif
#endif