Clean up header guards that don't match their file name
[qemu/kevin.git] / include / qemu / bcd.h
blobb4c9b64b8f9b205d330776c021e33a1238b3eb72
1 #ifndef QEMU_BCD_H
2 #define QEMU_BCD_H 1
4 /* Convert a byte between binary and BCD. */
5 static inline uint8_t to_bcd(uint8_t val)
7 return ((val / 10) << 4) | (val % 10);
10 static inline uint8_t from_bcd(uint8_t val)
12 return ((val >> 4) * 10) + (val & 0x0f);
15 #endif