Files
WSJT-X/lib/stdmsg.f90
T

13 lines
228 B
Fortran
Raw Normal View History

2013-03-11 19:43:06 +00:00
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