android_kernel_cmhtcleo/include/linux/bcd.h

10 lines
195 B
C
Raw Normal View History

2010-08-27 09:19:57 +00:00
#ifndef _BCD_H
#define _BCD_H
#include <linux/compiler.h>
unsigned bcd2bin(unsigned char val) __attribute_const__;
unsigned char bin2bcd(unsigned val) __attribute_const__;
#endif /* _BCD_H */