libsim  Versione7.1.6
integer function getunit ( )

Returns the number of a Fortran input/output unit currently unused.

It returns -1 in case of error. Example of use:

...
INTEGER :: n
...
n=getunit()
IF (n /= -1) THEN
OPEN(n, file='ostregheta.txt')
...

Definizione alla linea 325 del file file_utilities.F90.


Generated with Doxygen.