NCEPLIBS-bufr 11.7.1
cadn30.f
Go to the documentation of this file.
1C> @file
2C> @brief Convert an FXY value from its bit-wise (integer)
3C> representation to its six character representation
4
5C> This subroutine converts an FXY value from its bit-wise (integer)
6C> representation to its 6 character representation. It is similar
7C> to function adn30(), except that it always returns 6 characters,
8C> and it always returns its output as a call parameter instead of a
9C> function value, which in turn allows it to be more easily called
10C> from within a C language function.
11C>
12C> @author J. Ator
13C> @date 2004-08-18
14C>
15C> @param[in] IDN -- integer: Bit-wise representation of FXY value
16C> @param[out] ADN -- character*6: FXY value
17C>
18C> <b>Program History Log:</b>
19C> | Date | Programmer | Comments |
20C> | -----|------------|----------|
21C> | 2004-08-18 | J. Ator | Original author |
22C>
23 SUBROUTINE cadn30( IDN, ADN )
24
25 character*(*) adn
26 character*6 adn30
27
28 adn = adn30( idn, 6 )
29
30 RETURN
31 END
character *(*) function adn30(IDN, L30)
This function converts an FXY value from its bit-wise (integer) representation to its 5 or 6 characte...
Definition: adn30.f:29
subroutine cadn30(IDN, ADN)
This subroutine converts an FXY value from its bit-wise (integer) representation to its 6 character r...
Definition: cadn30.f:24