摘要: #include <stdio.h> #include <string.h> #include "utils.h" char Hex2Char(int i){ if(i>=0 && i<= 9) return i + 0x30; // return i + '0' if(i>=10 && i<=15 阅读全文
posted @ 2021-05-13 20:00 西瓦沙拉 阅读(89) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> #include "utils.h" char Hex2Char(int i){ if(i>=0 && i<= 9) return i + 0x30; // return i + '0' if(i>=10 && i<=15 阅读全文
posted @ 2021-05-13 08:48 西瓦沙拉 阅读(51) 评论(0) 推荐(0) 编辑