mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-04 05:50:31 -05:00 
			
		
		
		
	
		
			
	
	
		
			13 lines
		
	
	
		
			228 B
		
	
	
	
		
			Fortran
		
	
	
	
	
	
		
		
			
		
	
	
			13 lines
		
	
	
		
			228 B
		
	
	
	
		
			Fortran
		
	
	
	
	
	
| 
								 | 
							
								logical*1 function stdmsg(msg0)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  character*22 msg0,msg
							 | 
						||
| 
								 | 
							
								  integer dat(12)
							 | 
						||
| 
								 | 
							
								  logical text
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  call packmsg(msg0,dat,text)
							 | 
						||
| 
								 | 
							
								  call unpackmsg(dat,msg)
							 | 
						||
| 
								 | 
							
								  stdmsg=msg.eq.msg0 .and. (.not.text)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  return
							 | 
						||
| 
								 | 
							
								end function stdmsg
							 |