#include "implicit_f.inc"
Go to the source code of this file.
◆ spmd_chkw()
| subroutine spmd_chkw |
( |
integer | iwiout, |
|
|
integer | iout ) |
Definition at line 37 of file spmd_chkw.F.
40
41
42
43#include "implicit_f.inc"
44
45
46
47 INTEGER IWIOUT, IOUT
48
49
50
51 INTEGER IOS
52 CHARACTER(LEN=NCHAROUT) :: LINE
53
55 rewind(unit=iout)
56 READ(unit=iout,iostat=ios,fmt='(A)')
57 ios = 0
58 DO WHILE(ios==0)
59 READ(unit=iout,iostat=ios,fmt='(A)') line
60 IF(ios==0) THEN
61
62 iwiout = iwiout + ncharout
63 ENDIF
64 ENDDO
66
67 rewind(unit=iout)
68 READ(unit=iout,iostat=ios,fmt='(A)')
69
70 RETURN