Do I have to worry about endianness in this case (integers MUST be 0-127):
    int a = 120;
    int b = 100;
    int c = 50;
    char theBytes[] = {a, b, c};
I think that, since each integer sits in its own byte, I don't have to worry about Endianess in passing the byte array between systems. This has also worked out empirically. Am I missing something?