blob: d175d30fa2e1a0d4919db80df1fb1106b705f0df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef CONTS_H
#define CONTS_H
#define CONTS_JOIN2(a, b) a##_##b
#define CONTS_JOIN(a, b) CONTS_JOIN2(a, b)
#define CONTAINER_OF(ptr, type, member) \
(type *)((char *)(ptr) - offsetof(type, member))
#if __STDC_VERSION__ >= 202311UL
# define CONTS_AUTO auto
#elif defined(__GNUC__)
# define CONTS_AUTO __auto_type
#else
# warning "iteration won't work with this compiler"
#endif
#define foreach(name, i, s)\
for (CONTS_AUTO i = CONTS_JOIN(name, begin)(s);\
!CONTS_JOIN(name, end)(s, i);\
i = CONTS_JOIN(name, next)(i))
#endif /* CONTS_H */
|