C Library Functions  - h_close (3)

NAME

h_close(3f) - [M_html] close an HTML file (LICENSE:PD)

CONTENTS

Synopsis
Description
Options
Examples
Author
License

SYNOPSIS

subroutine h_close(iounit)

     integer,intent(in) :: iounit

DESCRIPTION

Write out

      </body>
      </html>

and then close an HTML file

OPTIONS

lun The unit number to close

EXAMPLES

Sample program

   program demo_h_close
   use M_html
   implicit none
   real    :: arr(10,20)=0.0
   integer :: io=20
   integer :: i,j
   do i=1,10
      do j=1,20
         arr(i,j)=(i-1)*20+j
      enddo
   enddo
   call h_open(io,’table.html’)
   call h_array(io,arr)
   call h_close(io)

end program demo_h_close

AUTHOR

John S. Urban

LICENSE

Public Domain


Nemo Release 3.1 h_close (3) February 23, 2025
Generated by manServer 1.08 from 117766fa-97d2-4502-af75-34d01c0addf6 using man macros.