blob: c6b9b60f8baf0b106ee3320a6c1a9eda5a1748cf [file] [log] [blame]
Lawrence Tangaacf0e22022-07-20 13:28:52 +01001#ifndef CPER_LIB_COMMON_UTILS_H
2#define CPER_LIB_COMMON_UTILS_H
3
4#include "edk/BaseTypes.h"
5
6int bcd_to_int(UINT8 bcd);
7UINT8 int_to_bcd(int value);
8
John Chungf8fc7052024-05-03 20:05:29 +08009#endif