home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / PPPBCKP / SRC / SRC20A01.ZIP / WATTSRC.ZIP / ELIB / OUTHEXES.C < prev    next >
Text File  |  1994-11-28  |  197b  |  15 lines

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