home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / msdos / lynx / source / wattcp / elib / outhexes.c < prev    next >
Encoding:
Text File  |  1994-10-25  |  178 b   |  15 lines

  1. /*
  2.  * outhexes - dump n hex bytes to stdio
  3.  *
  4.  */
  5.  
  6. outhexes( p, n )
  7. char far *p;
  8. int n;
  9. {
  10.     while ( n-- > 0) {
  11.         outhex( *p++);
  12.         outch(' ');
  13.     }
  14. }
  15.