文件名称:文本数组转bin工具
文件大小:92KB
文件格式:EXE
更新时间:2023-07-18 07:06:24
工具
将文本中的数组提取出来,全部保存到一个Bin文件中。 例如: 文件 file001.c 内容:const unsigned char array001[4] = {0x11,0x11,0x11,0x11}; 文件 file002.c 内容:const unsigned char array001[4] = {0x12,0x12,0x12,0x12}; 将上述两个文件file001.c和file002.c中数组的数值提取出来,保存到output.bin中。 更加详细的信息请参见: 工具简介:https://blog.csdn.net/qingtianjushi/article/details/106985079 SourceCode:https://github.com/ensky16/FileToBin