C2A_Core
ascii_conv.h
[詳解]
1 #ifndef ASCII_CONV_H_
2 #define ASCII_CONV_H_
3 
4 unsigned char ascii2hex(unsigned short ascii);
5 unsigned short hex2ascii(unsigned char hex);
6 
7 #endif
unsigned char ascii2hex(unsigned short ascii)
Definition: ascii_conv.c:4
unsigned short hex2ascii(unsigned char hex)
Definition: ascii_conv.c:45