str 2 hex
摘要:
1 void str2hex(const char*p,unsigned int index) 2 { 3 unsigned char i=0,j=0; 4 for(;i < index;) 5 { 6 hexBuf[j]<<=4; 7 if(*p >= '0' && '9' >= *p) 8 { 阅读全文
posted @ 2021-07-15 15:50 Milo_lu 阅读(268) 评论(0) 推荐(0) 编辑