summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/c/Issue_3457.c
blob: e76affa4b9d35f4d60db5d2e43e5938baa778ffa (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)