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

  1. /*    da_tell(fd) returns the current byte position within a file.
  2.  
  3.     Copyright (c) 1983 by James F. Gimpel
  4.     Copyright (c) 1983, 1984, 1985 by JMI Software Consultants, Inc.
  5. */
  6. #include "acom.h"
  7.  
  8. LONG da_tell(fd)
  9.     FILE fd;
  10.     {
  11.     EXFUNC LONG lseek();
  12.  
  13.     return (lseek(fd, 0L, 1));
  14.     }
  15.