1
0
mirror of https://github.com/irungentoo/toxcore.git synced 2024-03-22 13:30:51 +08:00
toxcore/nacl/curvecp/uint16_unpack.c

10 lines
174 B
C
Raw Normal View History

2013-07-02 21:53:34 +08:00
#include "uint16_unpack.h"
crypto_uint16 uint16_unpack(const unsigned char *x)
{
crypto_uint16 result;
result = x[1];
result <<= 8; result |= x[0];
return result;
}