toxcore/nacl/curvecp/uint16_pack.c
2013-07-02 09:53:34 -04:00

8 lines
123 B
C

#include "uint16_pack.h"
void uint16_pack(unsigned char *y,crypto_uint16 x)
{
*y++ = x; x >>= 8;
*y++ = x; x >>= 8;
}