bcd.h 195 B

123456789
  1. #ifndef _BCD_H
  2. #define _BCD_H
  3. #include <linux/compiler.h>
  4. unsigned bcd2bin(unsigned char val) __attribute_const__;
  5. unsigned char bin2bcd(unsigned val) __attribute_const__;
  6. #endif /* _BCD_H */