NCEPLIBS-w3emc 2.12.0
Loading...
Searching...
No Matches
w3fi01.f
Go to the documentation of this file.
1C> @file
2C> @brief Determines machine word length in bytes.
3C> @author R. Kistler @date 1992-01-10
4
5C> Determines the number of bytes in a full word for the
6C> particular machine (IBM or cray).
7C>
8C> Program history log:
9C> - R. Kistler 1992-01-10
10C> - Dennis Keyser 1992-05-22 Docblocked/commented.
11C> - Mark Iredell 1995-10-31 Removed saves and prints.
12C> - Stephen Gilbert 2001-06-07 Uses f90 standard routine bit_size to
13C> find integer word length
14C>
15C> @note Subprogram can be called from a multiprocessing environment.
16C>
17C> @author R. Kistler @date 1992-01-10
18 SUBROUTINE w3fi01(LW)
19C
20 INTEGER LW
21 lw=bit_size(lw)
22 lw=lw/8
23 RETURN
24 END
subroutine w3fi01(lw)
Determines the number of bytes in a full word for the particular machine (IBM or cray).
Definition w3fi01.f:19