mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-10-31 13:10:19 -04:00 
			
		
		
		
	git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/WSJT/trunk@1 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
		
			
				
	
	
		
			23 lines
		
	
	
		
			531 B
		
	
	
	
		
			Fortran
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			531 B
		
	
	
	
		
			Fortran
		
	
	
	
	
	
|       function nchar(c)
 | |
| 
 | |
| C  Convert ascii number, letter, or space to 0-36 for callsign packing.
 | |
| 
 | |
|       character c*1
 | |
| 
 | |
|       if(c.ge.'0' .and. c.le.'9') then
 | |
|          n=ichar(c)-ichar('0')
 | |
|       else if(c.ge.'A' .and. c.le.'Z') then
 | |
|          n=ichar(c)-ichar('A') + 10
 | |
|       else if(c.ge.'a' .and. c.le.'z') then
 | |
|          n=ichar(c)-ichar('a') + 10
 | |
|       else if(c.ge.' ') then
 | |
|          n=36
 | |
|       else
 | |
|          Print*,'Invalid character in callsign ',c,' ',ichar(c)
 | |
|          stop
 | |
|       endif
 | |
|       nchar=n
 | |
| 
 | |
|       return
 | |
|       end
 |