home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
rtsi.com
/
2014.01.www.rtsi.com.tar
/
www.rtsi.com
/
OS9
/
OSK
/
APPS
/
DVI_MGR
/
dvimgr_s.lzh
/
dvimgr
/
getbytes.h
< prev
next >
Wrap
Text File
|
1993-08-06
|
486b
|
19 lines
/* -*-C-*- getbytes.h */
/*-->getbytes*/
/**********************************************************************/
/****************************** getbytes ******************************/
/**********************************************************************/
void
getbytes(fp, cp, n) /* get n bytes from file fp */
register FILE *fp; /* file pointer */
register char *cp; /* character pointer */
register BYTE n; /* number of bytes */
{
while (n--)
*cp++ = (char)getc(fp);
}