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