FTELL
— Current stream positionThis intrinsic is provided in both subroutine and function forms; however, only one form can be used in any given program unit.
CALL FTELL(UNIT, OFFSET) |
OFFSET = FTELL(UNIT) |
OFFSET | Shall of type INTEGER . |
UNIT | Shall of type INTEGER . |
PROGRAM test_ftell INTEGER :: i OPEN(10, FILE="temp.dat") CALL ftell(10,i) WRITE(*,*) i END PROGRAM
© Free Software Foundation
Licensed under the GNU Free Documentation License, Version 1.3.
https://gcc.gnu.org/onlinedocs/gcc-5.4.0/gfortran/FTELL.html