xref: /openbmc/libcper/common-utils.h (revision f8fc7052)
1 #ifndef CPER_LIB_COMMON_UTILS_H
2 #define CPER_LIB_COMMON_UTILS_H
3 
4 #include "edk/BaseTypes.h"
5 
6 int bcd_to_int(UINT8 bcd);
7 UINT8 int_to_bcd(int value);
8 
9 #endif
10