blob: 18b5b12cf991bae005705f206e2471dc59e1bd90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include "uint16.h"
void uint16_unpack(char s[2],uint16 *u)
{
uint16 result;
result = (unsigned char) s[1];
result <<= 8;
result += (unsigned char) s[0];
*u = result;
}
void uint16_unpack_big(char s[2],uint16 *u)
{
uint16 result;
result = (unsigned char) s[0];
result <<= 8;
result += (unsigned char) s[1];
*u = result;
}
|