home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l200 / 6.ddi / LIB / DASEEK.C < prev    next >
Encoding:
C/C++ Source or Header  |  1986-08-21  |  359 b   |  17 lines

  1. /*    da_seek(fd, offset) seeks to a particular byte position within
  2.     a file. The first character is considered offset 0.
  3.  
  4.     Copyright (c) 1983 by James F. Gimpel
  5.     Copyright (c) 1983, 1984 by JMI Software Consultants, Inc.
  6. */
  7. #include "acom.h"
  8.  
  9. VOID da_seek(fd, offset)
  10.     FILE fd;
  11.     LONG offset;
  12.     {
  13.     EXFUNC LONG lseek();
  14.  
  15.     lseek(fd, offset, 0);
  16.     }
  17.