summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/c/00094-Issue_3457.c
blob: d8baf3c973c34d76e29dd831d5f350c0a2467691 (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)