home *** CD-ROM | disk | FTP | other *** search
- /* da_seek(fd, offset) seeks to a particular byte position within
- a file. The first character is considered offset 0.
-
- Copyright (c) 1983 by James F. Gimpel
- Copyright (c) 1983, 1984 by JMI Software Consultants, Inc.
- */
- #include "acom.h"
-
- VOID da_seek(fd, offset)
- FILE fd;
- LONG offset;
- {
- EXFUNC LONG lseek();
-
- lseek(fd, offset, 0);
- }