1uint32_pack(3) Library Functions Manual uint32_pack(3)
23
4
NAME
6uint32_pack - write an unsigned little-endian 32-bit integer
7
SYNTAX
9#include <uint32.h>
1011
uint32 u;
1213
void uint32_pack(char s[4],uint32 u);
14
DESCRIPTION
16uint32 is a 32-bit unsigned integer type, normally either unsigned int
17or unsigned long.
1819
uint32_pack portably writes a uint32 u to s in little-endian byte
20order.
2122
SEE ALSO
24uint32_unpack(3), uint32_pack_big(3)
2526
27
28
uint32_pack(3)