home *** CD-ROM | disk | FTP | other *** search
- /* da_tell(fd) returns the current byte position within a file.
-
- Copyright (c) 1983 by James F. Gimpel
- Copyright (c) 1983, 1984, 1985 by JMI Software Consultants, Inc.
- */
- #include "acom.h"
-
- LONG da_tell(fd)
- FILE fd;
- {
- EXFUNC LONG lseek();
-
- return (lseek(fd, 0L, 1));
- }