NCEPLIBS-bufr 11.7.1
moda_bitbuf.F
Go to the documentation of this file.
1C> @file
2C> @brief Declare arrays for internal storage of BUFR messages.
3
4C> This module contains array and variable declarations used to
5C> store BUFR messages internally for multiple I/O streams.
6C>
7C> @author J. Ator
8C> @date 2014-12-10
9
11
12C> @var maxbyt
13C> Maximum length of an output BUFR message.
14C>
15C> @var mbyt
16C> Length (in bytes) of current BUFR message for each internal
17C> I/O stream.
18C>
19C> @var mbay
20C> Current BUFR message for each internal I/O stream.
21
22 INTEGER :: maxbyt
23 INTEGER :: ibit
24 INTEGER, ALLOCATABLE :: ibay(:)
25 INTEGER, ALLOCATABLE :: mbyt(:)
26 INTEGER, ALLOCATABLE :: mbay(:,:)
27
28 END MODULE
This module contains array and variable declarations used to store BUFR messages internally for multi...
Definition: moda_bitbuf.F:10
integer maxbyt
Maximum length of an output BUFR message.
Definition: moda_bitbuf.F:22
integer, dimension(:), allocatable mbyt
Length (in bytes) of current BUFR message for each internal I/O stream.
Definition: moda_bitbuf.F:25
integer, dimension(:,:), allocatable mbay
Current BUFR message for each internal I/O stream.
Definition: moda_bitbuf.F:26