Files
WSJT-X/lib/stdmsg.f90
T

13 lines
230 B
Fortran
Raw Normal View History

2013-03-11 19:43:06 +00:00
logical*1 function stdmsg(msg0)
use packjt
2013-03-11 19:43:06 +00:00
character*22 msg0,msg
integer dat(12)
call packmsg(msg0,dat,itype)
2013-03-11 19:43:06 +00:00
call unpackmsg(dat,msg)
stdmsg=(msg.eq.msg0) .and. (itype.ge.0)
2013-03-11 19:43:06 +00:00
return
end function stdmsg