source: libcf/trunk/include/cf_codec.h@ 86

Last change on this file since 86 was 86, checked in by cheese, 11 years ago

#1 fix datetime in log for win64 and rename some enumerations and functions

File size: 536 bytes
Line 
1/**
2 * @file cf_codec.h
3 * @author myusgun <myusgun@gmail.com>
4 *
5 * @remark 데이터 변환
6 *
7 * @example codec.c
8 */
9#include "cf_base.h"
10
11#include <stddef.h>
12
13#ifndef __CF_CODEC_H__
14#define __CF_CODEC_H__
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
20CF_EXPORT int
21CF_Codec_Hex_Encode (const unsigned char * bin,
22 const size_t len,
23 char * hex);
24
25CF_EXPORT int
26CF_Codec_Hex_Decode (const char * hex,
27 unsigned char * bin,
28 size_t * len);
29
30#ifdef __cplusplus
31}
32#endif
33
34#endif // #ifndef __CF_CODEC_H__
Note: See TracBrowser for help on using the repository browser.