NCEPLIBS-w3emc 2.12.0
Loading...
Searching...
No Matches
sbytec.f
Go to the documentation of this file.
1C> @file
2C> @brief Wrapper for sbytesc()
3C> @author Unknown
4
5C> This is a wrapper for sbytesc()
6C> @param[in] OUT = packed array output
7C> @param[in] IN = unpacked array input
8C> @param[in] ISKIP = initial number of bits to skip
9C> @param[in] NBYTE = number of bits to pack
10C>
11C> @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