10 unsigned char byte
[5];
14 output_digit (unsigned char n
)
20 calculate_digit (value_t
*value
)
26 xprint_format (const char *format
)
36 unsigned char store
[6];
37 unsigned char *pstore
= &store
[5];
47 calculate_digit(&value
);
51 *pstore
= (value
.byte
[4] << 4) | (value
.byte
[4] >> 4) | *pstore
;
56 *pstore
= value
.byte
[4];
72 value
.byte
[4] = *pstore
>> 4;
76 value
.byte
[4] = *pstore
& 0x0F;
79 output_digit( value
.byte
[4]);