summaryrefslogtreecommitdiff
path: root/src/libstddjb/uint32_pack.c
blob: d467c3d76f8b2c7c818a3038d95eea102f7a5cf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* ISC license. */

#include <skalibs/uint32.h>
#include <skalibs/bytestr.h>

void uint32_pack (char *s, uint32 u)
{
  ((unsigned char *)s)[0] = T8(u) ; u >>= 8 ;
  ((unsigned char *)s)[1] = T8(u) ; u >>= 8 ;
  ((unsigned char *)s)[2] = T8(u) ; u >>= 8 ;
  ((unsigned char *)s)[3] = T8(u) ;
}