NCEPLIBS-bufr  11.7.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> | Date | Programmer | Comments |
20 C> | -----|------------|----------|
21 C> | 2016-06-27 | J. Ator | Original author |
22 C>
23  INTEGER FUNCTION igetmxby()
24 
25  USE moda_bitbuf
26 
27 c-----------------------------------------------------------------------
28 c-----------------------------------------------------------------------
29 
30  CALL openbf(0,'FIRST',0)
31 
32  igetmxby = maxbyt
33 
34  RETURN
35  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:23
subroutine openbf(LUNIT, IO, LUNDX)
This subroutine connects a new file to the BUFRLIB software for input or output operations.
Definition: openbf.f:138
This module contains array and variable declarations used to store BUFR messages internally for multi...
Definition: moda_bitbuf.F:10