home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / hamradio / wattcp.zip / OUTHEXES.C < prev    next >
Text File  |  1990-11-27  |  178b  |  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.