tell.c 103 B

1234567891011
  1. /* $Id$ */
  2. /*
  3. * return offset in file.
  4. */
  5. long lseek();
  6. long tell(f)
  7. {
  8. return(lseek(f, 0L, 1));
  9. }