Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at 2d8009ba67f9503ceadf9d5a3b5637cee291ea8d 9 lines 195 B view raw
1#ifndef _BCD_H 2#define _BCD_H 3 4#include <linux/compiler.h> 5 6unsigned bcd2bin(unsigned char val) __attribute_const__; 7unsigned char bin2bcd(unsigned val) __attribute_const__; 8 9#endif /* _BCD_H */