mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-22 14:32:25 +00:00
bf9710fd5a
This only affects build_android, if nacl-gcc-prep is run then build/`uname -s` will be created.
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;
|
|
}
|