| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| integer, | intent(in) | :: | unit_id | |||
| character(len=*), | intent(in) | :: | text |
subroutine write_csv_header(unit_id, text) integer, intent(in) :: unit_id character(len=*), intent(in) :: text write(unit_id,'(",",a)', advance='no') trim(text) end subroutine write_csv_header