NCEPLIBS-w3emc  2.11.0
sbytec.f
Go to the documentation of this file.
1 C> @file
2 C> @brief Wrapper for sbytesc()
3 C> @author Unknown
4 
5 C> This is a wrapper for sbytesc()
6 C> @param[in] OUT = packed array output
7 C> @param[in] IN = unpacked array input
8 C> @param[in] ISKIP = initial number of bits to skip
9 C> @param[in] NBYTE = number of bits to pack
10 C>
11 C> @author Unknown
12 
13  SUBROUTINE sbytec(OUT,IN,ISKIP,NBYTE)
14  character*1 out(*)
15  integer in(*)
16  CALL sbytesc(out,in,iskip,nbyte,0,1)
17  RETURN
18  END
subroutine sbytec(OUT, IN, ISKIP, NBYTE)
This is a wrapper for sbytesc()
Definition: sbytec.f:14
subroutine sbytesc(OUT, IN, ISKIP, NBYTE, NSKIP, N)
Store bytes - pack bits: Put arbitrary size values into a packed bit string, taking the low order bit...
Definition: sbytesc.f:17