home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / HARDDISK / BOOTM13.ZIP / HEX2BIN.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-17  |  216 b   |  17 lines

  1. /*
  2.  * hex2bin - a simple hex to binary converter
  3.  */
  4. #include <stdio.h>
  5. main()
  6. {
  7.   int c;
  8.  
  9. #ifdef MSDOS
  10.   setmode(stdout,O_BINARY);
  11. #endif
  12.  
  13.   while (scanf("%x", &c) == 1)
  14.     putchar(c);
  15.   exit(0);
  16. }
  17.