NCEPLIBS-w3emc  2.11.0
gbytec.f
Go to the documentation of this file.
1 C> @file
2 C> @brief Wrapper for gbytesc() limiting NSKIP and N to 0 and 1.
3 C> @author NOAA Programmer
4 
5 C> Wrapper for gbytesc() limiting NSKIP and N to 0 and 1.
6 C>
7 C> @param[in] IN Character*1 array input.
8 C> @param[out] IOUT Unpacked array output.
9 C> @param[in] ISKIP Initial number of bits to skip.
10 C> @param[in] NBYTE Number of bits to take.
11 C>
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