home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Il CD di internet
/
CD.iso
/
INTERNET
/
WWW
/
LYNX
/
SOURCE
/
SRC0_8A.ZIP
/
WATTCP
/
ELIB
/
OUTHEXES.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-11-27
|
178 b
|
15 lines
/*
* outhexes - dump n hex bytes to stdio
*
*/
outhexes( p, n )
char far *p;
int n;
{
while ( n-- > 0) {
outhex( *p++);
outch(' ');
}
}