Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(slps_t), | pointer | :: | p |
subroutine destroy_slps(p)
type(slps_t), pointer :: p
type(slps_t), pointer :: q
do while (associated(p))
call destroy_radfunc(p%V)
q => p%next
deallocate(p)
p => q
enddo
end subroutine destroy_slps