NCEPLIBS-bufr  11.5.0
 All Data Structures Files Functions Variables Pages
moda_rlccmn.F
1  MODULE moda_rlccmn
2 
3 #ifndef MXRST_H
4 #define MXRST_H
5  USE modv_mxrst
6 #endif
7 
8  INTEGER :: nrst
9 #ifdef DYNAMIC_ALLOCATION
10  INTEGER, ALLOCATABLE :: irnch(:)
11  INTEGER, ALLOCATABLE :: irbit(:)
12  CHARACTER*10, ALLOCATABLE :: crtag(:)
13 #else
14  INTEGER :: irnch(mxrst)
15  INTEGER :: irbit(mxrst)
16  CHARACTER*10 :: crtag(mxrst)
17 #endif
18 
19  END MODULE
This module declares and initializes the MXRST variable.
Definition: modv_MXRST.F:16