/** * @file cf_codec.h * @author myusgun * * @remark * 데이터 변환 기능 제공 * * @example codec.c */ #include "cf_base.h" #include #ifndef __CF_CODEC_H__ #define __CF_CODEC_H__ #ifdef __cplusplus extern "C" { #endif CF_EXPORT int CF_Codec_BinaryToHex (const unsigned char * bin, const size_t len, char * hex); CF_EXPORT int CF_Codec_HexToBinary (const char * hex, unsigned char * bin, size_t * len); #ifdef __cplusplus } #endif #endif // #ifndef __CF_DEBUG_H__