]> cloudbase.mooo.com Git - z180-stamp.git/blob - include/bcd.h
Server: Time and Date support
[z180-stamp.git] / include / bcd.h
1 /*
2 * (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7 #ifndef BCD_H
8 #define BCD_H
9
10 uint_fast8_t bcd2bin(uint8_t val);
11 uint8_t bin2bcd (uint_fast8_t val);
12
13 #endif /* BCD_H */