ciabatta/inc/_macros.h

10 lines
144 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-07 06:02:23 +00:00
#define _countof(arr) (sizeof (arr) / sizeof ((arr)[0]))