NCEPLIBS-bufr  11.5.0
 All Data Structures Files Functions Variables Pages
igetmxby.f
Go to the documentation of this file.
1 C> @file
2 C> @brief Get the maximum length of a BUFR message that can be
3 C> written to an output file.
4 
5 C> This function returns the maximum length of a BUFR message that
6 C> can be written to any output file by the BUFRLIB software.
7 C>
8 C> @author J. Ator
9 C> @date 2016-06-27
10 C>
11 C> @returns igetmxby - integer: Maximum length of a BUFR message
12 C> that can be written to an output file by
13 C> the BUFRLIB software
14 C>
15 C> <p>This maximum length value can be changed at any time via a
16 C> separate call to subroutine maxout().
17 C>
18 C> <b>Program history log:</b>
19 C> - 2016-06-27 J. Ator -- Original author
20 C>
21  INTEGER FUNCTION igetmxby()
22 
23  USE moda_bitbuf
24 
25 c-----------------------------------------------------------------------
26 c-----------------------------------------------------------------------
27 
28  CALL openbf(0,'FIRST',0)
29 
30  igetmxby = maxbyt
31 
32  RETURN
33  END
INTEGER function igetmxby()
This function returns the maximum length of a BUFR message that can be written to any output file by ...
Definition: igetmxby.f:21
subroutine openbf(LUNIT, IO, LUNDX)
This subroutine connects a new file to the BUFRLIB software for input or output operations.
Definition: openbf.F:157
This module contains array and variable declarations used to store BUFR messages internally for multi...
Definition: moda_bitbuf.F:10