1
0
mirror of https://github.com/saitohirga/WSJT-X.git synced 2025-05-03 08:28:35 -04:00
WSJT-X/lib/stdmsg.f90

13 lines
230 B
Fortran
Raw Normal View History

logical*1 function stdmsg(msg0)
use packjt
character*22 msg0,msg
integer dat(12)
call packmsg(msg0,dat,itype)
call unpackmsg(dat,msg)
stdmsg=(msg.eq.msg0) .and. (itype.ge.0)
return
end function stdmsg