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 >
Text File  |  1993-08-06  |  486b  |  19 lines

  1. /* -*-C-*- getbytes.h */
  2. /*-->getbytes*/
  3. /**********************************************************************/
  4. /****************************** getbytes ******************************/
  5. /**********************************************************************/
  6.  
  7. void
  8. getbytes(fp, cp, n)    /* get n bytes from file fp */
  9. register FILE *fp;    /* file pointer     */
  10. register char *cp;    /* character pointer */
  11. register BYTE n;    /* number of bytes */
  12.  
  13. {
  14.     while (n--)
  15.     *cp++ = (char)getc(fp);
  16. }
  17.  
  18.  
  19.