1uint64_unpack_big(3) Library Functions Manual uint64_unpack_big(3)
2
3
4
6 uint64_unpack_big - read an unsigned big-endian 64-bit integer
7
9 #include <uint64.h>
10
11 uint64 u;
12
13 void uint64_unpack_big(const char s[4],uint64 *u);
14
16 uint64 is a 64-bit unsigned integer type.
17
18 uint64_unpack_big portably reads a uint64 as stored on a big-endian
19 architecture (i.e. in network byte order) from s and writes it into u
20 in the native byte order.
21
22
24 uint64_pack_big(3), uint64_unpack(3)
25
26
27
28 uint64_unpack_big(3)