摘要: #include <stdio.h> #include <string.h> #define BURSIZE 2048 int hex2dec(char c) { if ('0' <= c && c <= '9') { return c - '0'; } else if ('a' <= c && c 阅读全文
posted @ 2018-11-06 14:59 quliuliu2013 阅读(7884) 评论(3) 推荐(5)