home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Media Share 9
/
MEDIASHARE_09.ISO
/
hamradio
/
wattcp.zip
/
OUTHEXES.C
< prev
next >
Wrap
Text File
|
1990-11-27
|
178b
|
15 lines
/*
* outhexes - dump n hex bytes to stdio
*
*/
outhexes( p, n )
char far *p;
int n;
{
while ( n-- > 0) {
outhex( *p++);
outch(' ');
}
}