mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-28 17:08:54 +00:00
10 lines
174 B
C
10 lines
174 B
C
|
#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;
|
||
|
}
|