File: nvesget48.m4

package info (click to toggle)
netcdf-fortran 4.4.4%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,420 kB
  • ctags: 8,797
  • sloc: fortran: 51,087; f90: 20,357; sh: 11,601; ansic: 7,034; makefile: 548; pascal: 313; xml: 173
file content (17 lines) | stat: -rw-r--r-- 711 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
   function NF90_1FUN`'(ncid, varid, values, start)
     integer,                         intent( in) :: ncid, varid
     TYPE, intent(IN_OR_OUT) :: values
     integer, dimension(:), optional, intent( in) :: start
     integer                                      :: NF90_1FUN
 
     integer, dimension(nf90_max_var_dims) :: localIndex
     integer                               :: counter
     integer                               :: defaultInteger
     
     ! Set local arguments to default values
     localIndex(:) = 1
     if(present(start)) localIndex(:size(start)) = start(:)
 
     NF90_1FUN = NF_1FUN`'(ncid, varid, localIndex, defaultInteger)
     values = defaultInteger
   end function NF90_1FUN