首页 > 学院 > 开发设计 > 正文

c语言hex字符串转byte数组

2019-11-06 06:02:18
字体:
来源:转载
供稿:网友

c语言hex字符串转byte数组

例:”0C B1 15 02 C0 27 01 20 ” –> {0x0c, 0xb1, 0x15, 0x02, 0xc0, 0x27, 0x01, 0x20}

static int hex2byte(char *dst, char *src) { while(*src) { if(' ' == *src) { src++; continue; } sscanf(src, "%02X", dst); src += 2; dst++; } return 0;}
上一篇:day13 String

下一篇:linuxmint18上django开发

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表