summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00094-Issue_3457.c
blob: c60961353c87e727158abf1cdc25a8985d648e3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#define IS_UNSIGNED(t) \
	_Generic((t), \
		 uint8_t: true, \
		 uint16_t: true, \
		 uint32_t: true, \
		 uint64_t: true, \
		 unsigned long long: true, \
		 int8_t: false, \
		 int16_t: false, \
		 int32_t: false, \
		 int64_t: false, \
		 signed long long: false)