mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-10-31 13:10:19 -04:00 
			
		
		
		
	2. Improved the listing of add-on DXCC prefixes. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/trunk@119 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
		
			
				
	
	
		
			14 lines
		
	
	
		
			340 B
		
	
	
	
		
			Fortran
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			340 B
		
	
	
	
		
			Fortran
		
	
	
	
	
	
|       subroutine pfxdump(fname)
 | |
|       character*(*) fname
 | |
|       include 'pfx.f'
 | |
| 
 | |
|       open(11,file=fname,status='unknown')
 | |
|       write(11,1001) sfx
 | |
|  1001 format('Supported Suffixes:'/(11('/',a1,2x)))
 | |
|       write(11,1002) pfx
 | |
|  1002 format(/'Supported Add-On DXCC Prefixes:'/(15(a5,1x)))
 | |
|       close(11)
 | |
| 
 | |
|       return
 | |
|       end
 |