HEX2BIN.C
资源名称:bootmenu.zip [点击查看]
上传用户:yeshiping1
上传日期:2007-01-06
资源大小:29k
文件大小:0k
源码类别:
磁盘编程
开发平台:
Others
- /*
- * hex2bin - a simple hex to binary converter
- */
- #include <stdio.h>
- main()
- {
- int c;
- #ifdef MSDOS
- setmode(stdout,O_BINARY);
- #endif
- while (scanf("%x", &c) == 1)
- putchar(c);
- exit(0);
- }