https://github.com/torvalds/linux
Raw File
Tip revision: fec6c6fec3e20637bee5d276fb61dd8b49a3f9cc authored by Linus Torvalds on 04 March 2009, 01:05:22 UTC
Linux 2.6.29-rc7
Tip revision: fec6c6f
bcd.h
#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 */
back to top