25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
found_sz = 1, sflag(type_sz, "unsigned " #type); \
if (!found_ofs && sizeof(type) == sizeof(ptrdiff_t)) \
found_ofs = 1, sflag(type_offset, "signed " #type); \
}
int main() {
int found_sz = 0, found_ofs = 0, found_type = 0;
iflag(byte_bits,CHAR_BIT);
describe_integral(char,char);
describe_integral(short,short);
describe_integral(int,int);
describe_integral(long,long);
describe_integral(long long,llong);
printf("\n");
return 0;
}
|
|
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
found_sz = 1, sflag(type_sz, "unsigned " #type); \
if (!found_ofs && sizeof(type) == sizeof(ptrdiff_t)) \
found_ofs = 1, sflag(type_offset, "signed " #type); \
}
int main() {
int found_sz = 0, found_ofs = 0, found_type = 0;
iflag(arch_byte_bits,CHAR_BIT);
describe_integral(char,char);
describe_integral(short,short);
describe_integral(int,int);
describe_integral(long,long);
describe_integral(long long,llong);
printf("\n");
return 0;
}
|