NCEPLIBS-w3emc 2.12.0
Loading...
Searching...
No Matches
gbytec.f
Go to the documentation of this file.
1C> @file
2C> @brief Wrapper for gbytesc() limiting NSKIP and N to 0 and 1.
3C> @author NOAA Programmer
4
5C> Wrapper for gbytesc() limiting NSKIP and N to 0 and 1.
6C>
7C> @param[in] IN Character*1 array input.
8C> @param[out] IOUT Unpacked array output.
9C> @param[in] ISKIP Initial number of bits to skip.
10C> @param[in] NBYTE Number of bits to take.
11C>
12
13 SUBROUTINE gbytec(IN,IOUT,ISKIP,NBYTE)
14 character*1 in(*)
15 integer iout(*)
16 CALL gbytesc(in,iout,iskip,nbyte,0,1)
17 RETURN
18 END
subroutine gbytec(in, iout, iskip, nbyte)
Wrapper for gbytesc() limiting NSKIP and N to 0 and 1.
Definition gbytec.f:14
subroutine gbytesc(in, iout, iskip, nbyte, nskip, n)
Extract arbitrary size values from a packed bit string, right justifying each value in the unpacked a...
Definition gbytesc.f:16