摘要: 1 static int hex2byte(char *dst, char *src) { 2 char data[4]; 3 while(*src) { 4 if(' ' == *src) { 5 src++; 6 continue; 7 } 8 sscanf(src, "%02X", data) 阅读全文
posted @ 2020-05-27 10:08 耀耀王 阅读(376) 评论(0) 推荐(0)