home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 223_01 / fread.c < prev    next >
Encoding:
Text File  |  1979-12-31  |  384 b   |  10 lines

  1. /*
  2. **    fread.c        by F.A.Scacchitti    9/3/84
  3. */
  4.  
  5. fread(buf, sz, n, fd) char *buf; int sz, n, fd; {
  6.  
  7.    return(read(fd, buf, n*sz));
  8. }
  9.  
  10.