mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08: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;
|
|
}
|