The following way of checking for the signed number representation checks for twos complement correctly on my machine, but I dont have ones complement or signed magnitude machines to check it. Would the code work properly and more importantly, is it portable?
File: platform.h
#ifndef PLATFORM_H
#define PLATFORM_H
#include <limits.h>
static
const union {
signed char sc;
unsigned char uc;
} plat_4xvYw = {.sc = -1};
#define IS_TWOS_COMPL (plat_4xvYw.uc == UCHAR_MAX)
#define IS_ONES_COMPL (plat_4xvYw.uc == UCHAR_MAX - 1)
#define IS_SIGNED_MAG (plat_4xvYw.uc == (1U << (CHAR_BIT - 1)) + 1U)
#endif
File: a.c
#include <inttypes.h>
#include <limits.h>
#include "platform.h"
#include <assert.h>
int
main (void) {
assert (IS_TWOS_COMPL);
if (IS_TWOS_COMPL) {
printf ("twos complement\n");
} else if (IS_ONES_COMPL) {
printf ("ones complement\n");
} else if (IS_SIGNED_MAG) {
printf ("signed magnitude\n");
}
return 0;
}
unsigned(it's one of the types allowed by the strict aliasing rules), but unless the value of theintis representable asunsigned(i.e. not negative), there's no guarantee that it isn't a trap value ofunsigned. So it's not 100% portable, but the problem isn't accessing a signed int in general, it's accessing-1in particular. – Steve Jessop Nov 9 '11 at 13:15chartype will not have such problems, since C guarantees there will be no padding bits. There is no endianess issues. C guarantees there is a 1-1 mapping of values bits. So the only question left is whether the sign bit maps to a value bit of unsigned. Given that signed and unsigned char must have the same width, that has to be the case. (having said that, I agree your answer is better) – tyty Nov 9 '11 at 13:33signed charhas no padding, of course. – Steve Jessop Nov 9 '11 at 14:20