(common, tab='')
| 3343 | |
| 3344 | |
| 3345 | def common2fortran(common, tab=''): |
| 3346 | ret = '' |
| 3347 | for k in list(common.keys()): |
| 3348 | if k == '_BLNK_': |
| 3349 | ret = '%s%scommon %s' % (ret, tab, ','.join(common[k])) |
| 3350 | else: |
| 3351 | ret = '%s%scommon /%s/ %s' % (ret, tab, k, ','.join(common[k])) |
| 3352 | return ret |
| 3353 | |
| 3354 | |
| 3355 | def use2fortran(use, tab=''): |
no test coverage detected