You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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 */
|
|
|