home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / b / bootp.zip / PRINTA.C < prev    next >
Text File  |  1986-09-27  |  256b  |  12 lines

  1.  
  2. printa( ddbyte, chars )
  3. unsigned long ddbyte;
  4. int chars;
  5. {
  6. int i;
  7. static char hexchars[] = { "0123456789ABCDEF" };
  8.  
  9. for( i=(chars-1); i>=0; i-- )
  10.   pchar( hexchars[ ( ( ddbyte >> (i*4) ) & 0x0fl ) ] );
  11. }
  12.