//-------------------------------------------------------// // Project Code : ALE300K03-21-LGE-GEN2.0-BE-CPU1 // File Name : Util.h // Created on : 2022. 11. 5. // Description : // Author : KimJeongWoo // Last modified Date : //-------------------------------------------------------// #ifndef UTIL_UTIL_H_ #define UTIL_UTIL_H_ #ifdef __cplusplus extern "C" { #endif extern void getCompileTime(void); extern Uint16 BcdToDec(Uint16 x); extern int compare(const void *a, const void *b); extern float fMax2(float in1, float in2); extern float fMin2(float in1, float in2); extern float fMax3(float in1, float in2, float in3); extern float fMin3(float in1, float in2, float in3); extern float fMid3(float in1, float in2, float in3); #ifdef __cplusplus } #endif /* extern "C" */ #endif /* COMMON_RESOURCE_CODELIBRARY_UTIL_UTIL_H_ */