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

#include <stdint.h>
#include <skalibs/uint16.h>
#include <skalibs/bytestr.h>

void uint16_pack_big (char *s, uint16_t u)
{
  ((unsigned char *)s)[1] = T8(u) ; u >>= 8 ;
  ((unsigned char *)s)[0] = T8(u) ;
}