File: splitmsgdupe.f90

package info (click to toggle)
jtdx 2.2.159%2Bimproved-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 75,336 kB
  • sloc: cpp: 38,503; f90: 31,141; python: 27,061; ansic: 11,772; sh: 409; fortran: 353; makefile: 232
file content (21 lines) | stat: -rw-r--r-- 626 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
! This source code file was last time modified by Igor UA3DJY on February 6th, 2017
! All changes are shown in the patch file coming together with the full JTDX source code.

subroutine splitmsgdupe(decodedhist,callncq)

  character decodedhist*22,callncq*6

  if(decodedhist(1:3).eq.'CQ ' .or. &
     decodedhist(1:3).eq.'QRZ' .or. decodedhist(1:3).eq.'DE ') return

  i1=index(decodedhist,' ')
  if(i1.lt.4) return
  i2=index(decodedhist(i1+1:),' ')
  if(i2.lt.4) return
  i2=i2+i1
  if(len_trim(decodedhist(i1+1:i2-1)).gt.6) return
  callncq=decodedhist(i1+1:i2-1)


return
end subroutine splitmsgdupe