1 Star 0 Fork 8

Mountain丶/Xipkpublib_Update

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
XipHexToStr.c 598 Bytes
一键复制 编辑 原始数据 按行查看 历史
suitianmou 提交于 2016-03-17 14:03 . ʼ1.2汾
#include "kernel/syspub.h"
#include "ctype.h"
void XipHexToAsc(unsigned char dat, unsigned char **new)
{
unsigned char tdat;
unsigned char ascii_table[16] = {
'0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
};
if (islower(dat)) tdat = dat;
else tdat = toupper(dat);
**new = ascii_table[toupper(tdat) >> 4];
*new += 1;
**new = ascii_table[toupper(tdat) & 0x0f];
*new += 1;
}
void XipHexToStr(unsigned char *read, unsigned char **write, int len)
{
while(len--)
XipHexToAsc(*read++, write);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/OnePieceMountain/Xipkpublib_Update.git
git@gitee.com:OnePieceMountain/Xipkpublib_Update.git
OnePieceMountain
Xipkpublib_Update
Xipkpublib_Update
master

搜索帮助