NCEPLIBS-bufr  11.5.0
 All Data Structures Files Functions Variables Pages
moda_msgcwd.F
1  MODULE moda_msgcwd
2 
3 #ifndef NFILES_H
4 #define NFILES_H
5  USE modv_nfiles
6 #endif
7 
8 #ifdef DYNAMIC_ALLOCATION
9  INTEGER, ALLOCATABLE :: nmsg(:)
10  INTEGER, ALLOCATABLE :: nsub(:)
11  INTEGER, ALLOCATABLE :: msub(:)
12  INTEGER, ALLOCATABLE :: inode(:)
13  INTEGER, ALLOCATABLE :: idate(:)
14 #else
15  INTEGER :: nmsg(nfiles)
16  INTEGER :: nsub(nfiles)
17  INTEGER :: msub(nfiles)
18  INTEGER :: inode(nfiles)
19  INTEGER :: idate(nfiles)
20 #endif
21 
22  END MODULE
This module declares and initializes the NFILES variable.
Definition: modv_NFILES.F:16