3 ! Filenames with embedded NULL characters are truncated, make sure
4 ! inquire reports the correct truncated name.
7 character(len
=15), parameter :: s
= "hello" // achar(0) // "world", &
12 inquire(unit
=10, name
=r
)
13 if (r
/= s2
) call abort()
14 inquire(file
=s2
, exist
=l
)
15 if (.not
. l
) call abort()
16 close(10, status
="delete")
17 end program filename_null