File: sz_f.f

package info (click to toggle)
cfortran 20210827-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 756 kB
  • sloc: ansic: 3,302; fortran: 959; makefile: 113; sh: 14
file content (15 lines) | stat: -rw-r--r-- 526 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
C /* sz_f.f */                   /* anonymous ftp@zebra.desy.de */
C /* An example from cfortran.h package. Requires sz.c          */
C /* Burkhard Burow  burow@desy.de                 1990 - 1996. */

      subroutine sz(v, w, i)
      implicit none
      integer i,j
      character *(*) v(i), w(i)
      print*,'SZ:len(v(1 or 2 or 3 or 4))  =',len(v(1))
      print*,'SZ:len(w(1 or 2 or 3))    =',len(w(1))
      do 100 j = 1,i
        print*,'SZ:v(',j,') =',v(j),'   w(',j,') =',w(j)
100   continue
      return
      end