home *** CD-ROM | disk | FTP | other *** search
- /* da_size(fd) returns the size of the file in bytes.
-
- Copyright (c) 1983 by James F. Gimpel
- Copyright (c) 1983, 1984 by JMI Software Consultants, Inc.
- */
- #include "acom.h"
-
- LONG da_size(fd)
- FILE fd;
- {
- EXFUNC LONG lseek();
- LONG pos, siz;
-
- pos = lseek(fd, 0L, 1);
- siz = lseek(fd, 0L, 2);
- lseek(fd, pos, 0);
- return (siz);
- }