summaryrefslogtreecommitdiff
path: root/src/libstddjb/uint16_pack.c
blob: 56b5dcbd50b19986cc71e2879308a0aae55ce959 (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 (char *s, uint16_t u)
{
  ((unsigned char *)s)[0] = T8(u) ; u >>= 8 ;
  ((unsigned char *)s)[1] = T8(u) ;
}