File: hex2chars.zip Author: douglas irving repetto (glmrboy@shoko.calarts.edu) Release: 12.oct.97 Compatibility: DR9 Location: develop Description: converts hex to unsigned char theImage[] = {0xFA, etc}; Notes: hex2chars - a quick hack to go from a generic hex file like this: FA8E B2B2 B2B2 B2B2 B2B2 B2B2 B2B2 to a file like this: unsigned char theImage[] = {0xFA, 0x8E, 0xB2, and so on . . .}; used for creating image bitmaps.