#ifndef __UTIL_HDLC_H__ #define __UTIL_HDLC_H__ /* author : choi jin yong 2007_0321 cyber2 hdlc encode/decode function, log util */ void log0(const char* ss); void log_hex(char* msg, char* buf, int size); void hdlc_encode(unsigned char* buf, int size, unsigned char* out_buf, int* out_size); // ¹Ýȯ°ª : ¼º°ø½Ã 1 int hdlc_decode(unsigned char* buf, int size, unsigned char* out_buf, int* out_size); #endif