home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.wwiv.com
/
ftp.wwiv.com.zip
/
ftp.wwiv.com
/
pub
/
PPPBCKP
/
SRC
/
SRC15B96.ZIP
/
WATTSRC.ZIP
/
ELIB
/
OUTHEXES.C
< prev
next >
Wrap
Text File
|
1994-11-28
|
197b
|
15 lines
/*
* outhexes - dump n hex bytes to stdio
*
*/
#include <elib.h>
void outhexes( char far *p, int n )
{
while ( n-- > 0) {
outhex( *p++);
outch(' ');
}
}